Tooltips question

Hello,

How is it possible to make tooltips appear for cells of specific column?


2 Replies

HA haneefm Syncfusion Team November 27, 2007 05:54 PM UTC

Hi,

You can set the Style.CellTipText for the particular column to show the tooltip in a grid. You can do this in QueryCellInfo.

private void grid_QueryCellInfo(object sender, GridQueryCellInfoEventArgs e)
{
if(e.RowIndex > 0 && e.ColIndex == 3)
{
e.Style.CellTipText = e.Style.FormattedText;
//maybe .Text or some other string...
}
}

Best regards,
Haneef



AD Administrator Syncfusion Team August 1, 2008 10:11 AM UTC

Hi,

1) How can I show tooltips to all column headers in a grid as dynamically?

2) How can I show tooltip to text boxes, comboboxes, lookup textboxes etc... in a form as dynamically?

Thanks
-Kishan




Loader.
Up arrow icon