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
845
Min/Max column widths
posted

Hi there,

Is is possible to set Min and Max column widths for the WebHierarchicalDataGrid?

Thanks

Deon

Parents
No Data
Reply
  • 25665
    Verified Answer
    Offline posted

    Hello Deon,

    Thank you for contacting Infragistics.

    I have done some looking into this matter and have found that you can achieve this by enabling the ColumnResizing behavior and setting column settings for the columns you want a min and max width set. For example:

    <Behaviors>

      <ig:ColumnResizing>

       <ColumnSettings>

        <ig:ColumnResizeSetting ColumnKey="Name" MaximumWidth="200px" MinimumWidth="100px" />

       </ColumnSettings>

       </ig:ColumnResizing>

     </Behaviors>

    Please let me know if you have any further questions concerning this matter.

Children