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
110
UltraWebGrid column resize
posted

How can I force the row to stay inside the bounds of the window on a column resize?

When I resize a column the grid runs off the page. I have scrolling disabled and need the rest of the columns to readjust once I resize the a column. 

Here is my Display Layout:

<DisplayLayout 

                    ViewType="Hierarchical" 

                    ScrollBar="Never"

                    AllowColSizingDefault="Free" 

                    AllowColumnMovingDefault="None" 

                    AllowDeleteDefault="No" 

                    AutoGenerateColumns="false"

                    AllowSortingDefault="OnClient" 

                    AllowUpdateDefault="No"  

                    BorderCollapseDefault="Separate" 

                    HeaderClickActionDefault="SortSingle"

                    RowSelectorsDefault="No"  

                    SelectTypeRowDefault="Extended"                     

                    Version="4.00" 

                    ColFootersVisibleDefault="Yes"    

                    TableLayout="Fixed"  

                    CellClickActionDefault="RowSelect"                                                          

                </DisplayLayout>

If I set TableLayout to "Auto" bad things happen. I can't resize anything and the formatting is all off.

Thanks