Hi all,
I'm using syncfusion GridDataControl and I need to set ToolTip for each row.
I use Behavior<GridDataControl> and QueryCellInfo event. I get row by AssociatedObject.Model.Table.GetRecordFromRow(e.Cell.RowIndex) code. Everything was good before I group data by one of column. After I do this GetRecordFromRow stop to work. Some rows I can handle by this code
if (AssociatedObject.Model.Table.HasGroups)
{
rowIndex = e.Cell.RowIndex - 1;
}
But this workaround isn't help for all rows.