This is a migrated thread and some comments may be shown as answers.

show tooltip in the footer

1 Answer 44 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Savyo
Top achievements
Rank 1
Savyo asked on 26 Nov 2012, 12:31 PM
Hi
    How to show tooltip to the aggregate showing in the footer of the radgrid.
thanks
Savyo

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 26 Nov 2012, 12:35 PM
Hi,

Try the following code to show tooltip for footer.
C#:
protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e)
{
        if (e.Item is GridFooterItem)
        {
            GridFooterItem item = (GridFooterItem)e.Item;
            item["Uniquename"].ToolTip = "your text";
        }
}

Thanks,
Shinu.
Tags
Grid
Asked by
Savyo
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or