tooltip on grid cell and grid column header
-
how to put tooltip on the datagrid column header and also on cell of that column using vb.net 2003? plz help if anyone knows.here datagrid is bound at runtime.
-
how to put tooltip on the datagrid column header and also on cell of that column using vb.net 2003? plz help if anyone knows.here datagrid is bound at runtime.
http://www.extremeexperts.com/Net/CodeSnippets/ToolTipForDataGridHeader.aspx[^]
Vasudevan Deepak Kumar Personal Homepage Tech Gossips
-
how to put tooltip on the datagrid column header and also on cell of that column using vb.net 2003? plz help if anyone knows.here datagrid is bound at runtime.
Hi, You can assign tooltop to header and cell of the datagrid at runtime using ItemDataBound event of datagrid. void dg_ItemDataBound(object sender, DataGridItemEventArgs e) { if (e.Item.ItemType = ListItemType.Header) { e.Item.ToolTip = "tooltip"; e.Item.Cells[0].ToolTip = "toolTip"; } } Above code is in C# so apply vb syntax to implement. I hope this will help you. Thanks and Regards, Chetan Ranpariya