AD
Administrator
Syncfusion Team
August 19, 2003 10:25 PM UTC
I would try to do this using a virtual GridControl. In the QueryCellInfo event, you would have to map the e.RowIndex and e.ColIndex to the proper position in the DataTable that holds your dataitem for this position. Then you would set e.Style.Text = this.dataTable1.Rows[row][col].ToString() where row and col are the mapped values for e.RowIndex and e.ColIndex.
PS
Peter Schonefeld
August 20, 2003 09:46 PM UTC
Thanks for the advice Clay.
Pete