Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
75
How to avoid outlook group by of particular columns
posted

 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

  • 918
    posted

    I have not used the web grid but in the win grid I do it this way

    Dim aColumn As UltraGridColumn

    For Each aColumn In e.Layout.Bands(0).Columns

    Select Case aColumn.Key

    Case "Select"

    aColumn.Header.Caption = "Select"

    aColumn.Header.VisiblePosition = 0

    aColumn.Width = 44

    aColumn.DataType =
    GetType(Boolean)

    aColumn.AllowGroupBy = DefaultableBoolean.False

    Case "Name"

    etc........

     

    Hope this helps