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

tooltip for radgrid footer

1 Answer 48 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Allen
Top achievements
Rank 1
Allen asked on 30 Oct 2012, 11:13 AM
Hi
     I want to give tooltip for the footer for radgrid. How can I do this. Please help. thanks
allen

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 30 Oct 2012, 11:16 AM
Hi,

Please try the following code snippet to give ToolTip for the Footer.

C#:
protected void RadGrid1_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
    if (e.Item is GridFooterItem)
    {
        GridFooterItem item = (GridFooterItem)e.Item;
        item.ToolTip = "footer text";
    }
}

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