We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Extend specific column

In my databoundgrid I wanna extend a column to fill the client area. I tried the sample provided in the Thread "Extend most right column". All works fine if the user doesn't change the order of the columns. How can I extend the column which represents a specific column from the datatable? TIA Peter

2 Replies

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 :-)

Loader.
Live Chat Icon For mobile
Up arrow icon