Hello,
My company's product sets the datasource for an ultragrid has a particular column that is varchar(max) in the database; in the application this column is, of course, quite lengthy and so it is never seen in full on the grid. The Ultragrid provides a tooltip when the mouse hovers over the grid cell, but this hover text only lasts 5 seconds, even if the mouse is still over the same record. Is there anyway to make this text stay while the mouse over the cell.
Hi John,
You would need to use a CreationFilter for this - there's no simple property setting. I have attached a small sample project here that demonstrates this.
You just attach the CreationFilter to the grid using the CreationFilter property.
The CreationFilter class itself watches for a CellUIElement that has a ToolTipItem and then replaces that item with one that has no AutoPopUp
Thanks Mike, that worked perfectly!