AD
Administrator
Syncfusion Team
August 21, 2004 11:32 AM UTC
There are different TableModels for each nested level, so you have to subscribe to the event for each level.
We will eventually add a TableModelQueryCellFormattedText event to GridGroupingControl.
What you can do now is loop through relations and then wire the event for each nested TableModel. You can iterate through groupingControl.TableDescriptor.Relations and then get a reference to the TableModel with groupingControl.GetTableModel(relationDescriptor.ChildTableName). Or if you know the names of the tables in your dataset, you can also call also groupingControl.GetTableModel(tableName). Once you have the GridTableModel you can wire the event.