Hi,
I want to disable the default tooltips for some cells in a grid, I know this can be done at the grid level however I want to keep the tool tips as they are for the grid and just disable them for a particular column. Is this possible??
Thanks,
Denis
Hi Denis,
I don't see any property to turn off tooltips for a single column. But try this and see if it works:
private void ultraGrid1_InitializeRow(object sender, InitializeRowEventArgs e) { e.Row.Cells["Column that I don't want tooltips on"].ToolTipText = null; }