ASP.Net, Ajax.Net, C#, VB.NET, MS SQL Server, Oracle, JavaScript, JQuery
Today's Date: 5/19/2013

Using The JQuery Tooltip Plugin in a GridView

Technologies Used: ASP.NET 4.0, JQuery, MS SQL Server, C#, VB.NET

The Problem:

You want a little pop-up window to show additional information when you hover over a field on the gridview. The example below shows information about the respective related table (foreign key) when you hover over the link.

The Solution:

Simple. We can use the JQuery tooltip plugin to show additional information. The Jquery tooltip plugin we're going to use can be found here. And of course you will need the JQuery framework found here. All the needed scripts are already in the "Code to Download" below.

Minor Details: This example uses the (Microsoft) Northwind databases's Product Table. The gridview web control gets the data via an ObjectDataSource web control. The ObjectDataSource gets the data (SelectMethod) through a strongly-typed middle-tier object which encapsulates a data-tier object that calls on the stored procedure. You don't have to use an ObjectDataSource control to retrieve items in your data source, you could also a SQLDataSource, etc.

Tooltip in gridview


1. Load the Jquery framework and the JQuery tooltip plugin. Also load the stylesheet for use by the tooltip. Note: Code below shows we're loading a javascript file.

<link rel="stylesheet" type="text/css" href="Styles/jquery.tooltip.css" />
<script src="Scripts/gridview-readonly-script.js" type="text/javascript"></script>

Inside the javascript file 2 scripts are being loaded:

loadJavaScriptFile("Scripts/jquery-1.4.1.min.js");
loadJavaScriptFile("Scripts/jquery.tooltip.min.js");

function loadJavaScriptFile(jspath) {
    document.write('<script type="text/javascript" src="' + jspath + '"><\/script>');
}

2. Initialize the JQuery UI Tooltip plugin.

$(function () {
    InitializeToolTip();
});
function InitializeToolTip() {
    $(".gridViewToolTip").tooltip({
        track: true,
        delay: 0,
        showURL: false,
        fade: 100,
        bodyHandler: function () {
            return $($(this).next().html());
        },
        showURL: false
    });
}

3. We need a way to re-initialize the tooltip whenever there's a postback, for example when the user clicks one of the paging numbers or when the gridview is sorted. This is because the tooltip will stop working on postbacks. To do this, we need to call the initialization function seen above on page loads. See code below.

function pageLoad(sender, args) {
    if (args.get_isPartialLoad()) {
        InitializeToolTip();
    }
}

4. Add a TemplateField in the GridView. Inside the template field, add a div tag with a class named "tag". Also add an anchor tag, this will be the link we're going to hover on.

<asp:TemplateField HeaderText="Category ID" SortExpression="CategoryID" HeaderStyle-Wrap="false">
    <ItemStyle Width="30px" HorizontalAlign="Center" />
    <ItemTemplate>
        <div class="tag">
            <a href="#" class="gridViewToolTip"><%# Eval("CategoryID")%></a>
            <div id="tooltip" style="displaynone;">
                <table>
                    <tr>
                        <td style="white-spacenowrap;"><b>Category ID:</b>&nbsp;</td>
                        <td><%# Eval("Categories.Value.CategoryID")%></td>
                    </tr>
                    <tr>
                        <td style="white-spacenowrap;"><b>Category Name:</b>&nbsp;</td>
                        <td><%# Eval("Categories.Value.CategoryName")%></td>
                    </tr>
                    <tr>
                        <td style="white-spacenowrap;"><b>Description:</b>&nbsp;</td>
                        <td><%# Eval("Categories.Value.Description")%></td>
                    </tr>
                </table>
            </div>
        </div>
    </ItemTemplate>
</asp:TemplateField> 

You will notice that the class name (class="gridViewToolTip") being used for the anchor tag is the one we referenced during initialization. The key lies here. The div tag below this anchor tag will show every time you put your mouse over the link. And that's it.


Last Words: To run the code download, make sure to download and install Microsoft's Northwind database. Also make sure to change the user name and password on the Dbase.cs (Dbase.vb) class file found in the App_Code folder, under the Helper folder. The code for download is a modified version of the generated web form by AspxFormsGen 4.0.

Code Download: Download the code in C#, Download the code in VB.NET


As always, the code and the article are provided "As Is", there is absolutely no warranties. Use at your own risk.


Demonstration: Click here to see the demo

As always, the code and the article are provided "As Is", there is absolutely no warranties. Use at your own risk.

Questions, comments: junnark@gmail.com

Happy Coding!!!

Date Created: Friday, July 29, 2011