AD
Administrator
Syncfusion Team
January 13, 2004 09:39 AM UTC
QueryCellInfo (or something eqivalent like PrepareViewStyleInfo) is where you will have to set the tiptext.
When will you know what the text should be? At that point, save it somehow so that you can then later retrieve it in QueryCellInfo. Then call grid.RefreshRange to force QueryCellInfo to be called so your new tiptext can be used.
So, then in you QueryCellInfo handler, if the tipText for the requested cell has been saved, then set it in e.Style.CellTipText.
If it is not known, then you cannot show it. If it is known then it would be shown.