Dear all,
please help me out with this
im using ultrawebgrid in asp.net 2.0
with columns like select, delete, update that are image columns
and rest are data columns
i dont want to group by the the image columns
please help me out on this
I have not used the web grid but in the win grid I do it this way
For Each aColumn In e.Layout.Bands(0).Columns
Case "Select"
aColumn.Header.Caption = "Select"
aColumn.Header.VisiblePosition = 0
aColumn.Width = 44
aColumn.AllowGroupBy = DefaultableBoolean.False
Case "Name"
etc........
Hope this helps