Hello,
I am still not sure what the problem you are
experiencing. Because, I can set my custom tooltip,
using the e.row and e.colindex of the
FetchCellTips event even if sort the list on a column. Could
you provide us a sample what exactly is happening
and how you are using the Custom tooltip.
If you wish to access a particular value in the
C1List, you can try the given code in FetchCellTips.
Private Sub C1List1_FetchCellTips(ByVal sender As Object, ByVal e As C1.Win.C1List.FetchCellTipsEventArgs) Handles C1List1.FetchCellTips
e.CellTip =
Me.C1List1.Columns(1).CellValue(e.Row)
End Sub
I tried the above code even after sorting a
column. Celltips were displaying correct data. Please
provide a sample so that we can review this
further.
Regards,
Allen Smith
I need to find a way to access the row that the mouse is over.
Specifically, I need to get at the data for the row that is firing
FetchCellTips. My issue is, when the user mouses over a specific column on a
row, we need to build a dynamic tooltip. While the FetchCellTipsEventArgs
gives me a row and column index, the row index appears to be worthless.
Why in the heck do your controls not have a .Rows collection?! How do
you propose I access a row other than the currently selected row, without
accessing the datasource (because if you sort the list, the row numbers are
not synced up anymore)?
http://helpcentral.componentone.com/cs/forums/p/74996/203996.aspx#203996