AD
Administrator
Syncfusion Team
March 29, 2003 09:12 AM UTC
You can get the 'special' column index from its name using Me.GridDataBoundGrid1.Binder.NameToColIndex.
So, in your QueryColWidth handler, instead of comparing e.Index to Grid.ColCount, compare it to the specialIndex. Also, instead of using GetTotal to add up the columns from 0 to Grid.ColCount-1, you would have to loop through all columns and add up the colwidths (grid.Model.ColWidths[i]) except the for i equal the special column.
PE
Peter
March 29, 2003 09:47 AM UTC
Thanx, it works very fine :-)