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
5549
Size of the columns -Hierarchical grid
posted

hi, i show hierachical data in a ultragrid.
but when i set the size of the columns it is not possible to have different sizes in the columns.


 the above column (band0) should be a size of 30*8
and the bottom column (band1) should be a size of 4*8 . but equal what i set always both columns have the same size.

 

Me.UltraGrid1_Auftraege_Status.DisplayLayout.Bands(1).Columns("col1").Width = 8 * 8

 

 

 

Me.UltraGrid1_Auftraege_Status.DisplayLayout.Bands(0).Columns("col2"

).Width = 30 * 8

 

 

Parents
  • 20872
    Suggested Answer
    Offline posted

    Hello,

    You probably have to set the following property in order to achieve what you are looking for:

                ultraGrid1.DisplayLayout.Override.AllowColSizing = AllowColSizing.Free;

    Please let me know if that is not what you are looking for.

Reply Children
No Data