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
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.
Good afternoon. Thank you for your reply. For TableLayout = Fixed column is compressed, with a decrease in the browser window. Maybe there are other options?