Column header tooltip

Hi, I am displaying the tooltip for the column header of databoundgrid on the MouseMove event handler and using the function m_ToolTip.SetToolTip(m_ListingGrid,toolTipTxt); Tooltip is displayed but there is much of flicker.can you tell me why is this happening and how can this be avoided? Thanx Pratiksha

1 Reply

AD Administrator Syncfusion Team January 31, 2005 06:51 AM UTC

Try using the grid''s support for cell tips. In a GridDataBoundGrid, you can do this in a PrepareViewStyleInfo event handler.
private void gridDataBoundGrid1_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e)
{
	if(e.RowIndex == 0 && e.ColIndex == 2)
	{
		e.Style.CellTipText = "Hello there";
	}
}

Loader.
Up arrow icon