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
1775
Сolumn width
posted

Normal 0 false false false MicrosoftInternetExplorer4

Hello

Is this possible to set minimum column width without using ColWidthDefault. We made WebUltraGrid width  100%. It is necessary that the column widths dynamically distributed across the width of the grid, but the width of the column remained at least the minimum width.

 

Thank you

Parents
No Data
Reply
  • 19693
    Suggested Answer
    posted

    Hello Sergey,

    I can suggest you using the CustomRules of the CellStyle in order to set the min-width

      <igtbl:UltraGridColumn BaseColumnName="ID" Key="ID" AllowResize="Free" >

                                <Header Caption="ID">

                                </Header>

                                <CellStyle  CustomRules="min-width: 300px;"></CellStyle>

                            </igtbl:UltraGridColumn>

     

    Please let me know if you need further assistance regarding this.

     

Children