Available in the Full Version

Data Grid - Tooltips

First NameLast NameTitleBirth DateNotes
NancyDavolioSales Representative12/8/1948

Education includes a BA in psychology from Colorado State University in 1970. She also completed "The Art of the Cold Call." Nancy is a member of Toastmasters International.

AndrewFullerVice President, Sales2/19/1952

Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981. He is fluent in French and Italian and reads German. He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993. Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.

JanetLeverlingSales Representative8/30/1963

Janet has a BS degree in chemistry from Boston College (1984). She has also completed a certificate program in food retailing management. Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992.

MargaretPeacockSales Representative9/19/1937

Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966). She was assigned to the London office temporarily from July through November 1992.

StevenBuchananSales Manager3/4/1955

Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976. Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London. He was promoted to sales manager in March 1993. Mr. Buchanan has completed the courses "Successful Telemarketing" and "International Sales Management." He is fluent in French.

MichaelSuyamaSales Representative7/2/1963

Michael is a graduate of Sussex University (MA, economics, 1983) and the University of California at Los Angeles (MBA, marketing, 1986). He has also taken the courses "Multi-Cultural Selling" and "Time Management for the Sales Professional." He is fluent in Japanese and can read and write French, Portuguese, and Spanish.

RobertKingSales Representative5/29/1960

Robert King served in the Peace Corps and traveled extensively before completing his degree in English at the University of Michigan in 1992, the year he joined the company. After completing a course entitled "Selling in Europe," he was transferred to the London office in March 1993.

LauraCallahanInside Sales Coordinator1/9/1958

Laura received a BA in psychology from the University of Washington. She has also completed a course in business French. She reads and writes French.

AnneDodsworthSales Representative1/27/1966

Anne has a BA degree in English from St. Lawrence College. She is fluent in French and German.

 

This sample is designed for a larger screen size.

On mobile, try rotating your screen, view full size, or email to another device.

The main purpose of grid tooltips is to make the entire cell content visible and also to enable the user to select and copy the text that is inside the tooltip container. By default tooltips are displayed when the user hovers the mouse pointer over igGrid cell and the underlying data overflows its container. In order to be compatible for touch devices is added a new tooltip style called “popover”. If the popover style is activated it shows on a click or tap and the popover displays on the bottom of the cell. In the sample the tooltips for columns "First Name" and "Last Name" are disabled through the column settings and the tooltips for the rest of the columns are always visible.

Code View

Copy to Clipboard
<!DOCTYPE html>
<html>
<head>
    <title></title>

    <!-- Ignite UI for jQuery Required Combined CSS Files -->
    <link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" />
    <link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/structure/infragistics.css" rel="stylesheet" />

    <script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"></script>
    <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
    <script src="http://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>

    <!-- Ignite UI for jQuery Required Combined JavaScript Files -->
    <script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.core.js"></script>
    <script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.lob.js"></script>

    <style type="text/css">
        .tooltip-grid-notes { white-space: nowrap; text-overflow: ellipsis; overflow: hidden;}
    </style>
</head>
<body>    
    <table id="grid"></table>
    <script src="/data-files/northwind.js"></script>
    <script>
        $(function () {
            $( "#grid" ).igGrid( {
                autoGenerateColumns: false,
                autofitLastColumn: false,
                width: "100%",
                columns: [
                    { headerText: "First Name", key: "FirstName", dataType: "string", width: "10%" },
                    { headerText: "Last Name", key: "LastName", dataType: "string", width: "10%" },
                    { headerText: "Title", key: "Title", dataType: "string", width: "17%" },
                    { headerText: "Birth Date", key: "BirthDate", dataType: "date", width: "8%" },
                    { headerText: "Notes", key: "Notes", dataType: "string", width: "55%", template: "<p class='tooltip-grid-notes'> ${Notes} </p>" }
                ],
                dataSource: northwind,
                responseDataKey: "results",
                features: [
                    {
                        name: "Tooltips",
                        columnSettings: [
                           { columnKey: "FirstName", allowTooltips: false },
                           { columnKey: "LastName", allowTooltips: false }
                        ],
                        style: Modernizr.touch ? "popover" : "tooltip",
                        visibility: "always"
                    },
                    {
                        name: "Responsive",
                        enableVerticalRendering: false,
                        columnSettings: [
                            {
                                columnKey: "LastName",
                                classes: "ui-hidden-phone"
                            },
                            {
                                columnKey: "Title",
                                classes: "ui-hidden-phone"
                            },
                            {
                                columnKey: "BirthDate",
                                classes: "ui-hidden-phone"
                            }
                        ]
                    }
                ]
            });
        });
    </script>
</body>
</html>