How to adjust width of layout grid column by drag?

0
Hi, I'd like to dynamically change the width of grid by dra the border of the layout grid column. Is there any way to acheive it?  
asked
2 answers
0

Hi HyunKyu,

 

This is a standard feature of Grid 2: https://docs.mendix.com/appstore/modules/data-grid-2/

 

Look at https://docs.mendix.com/appstore/modules/data-grid-2/#8-configuration for users to save the configuration so the next time the user returns, the previous setting is used.

 

Go Make It

answered
2

Set the Layout Grid column to Auto-fit content and apply the below css in the Appearance->Style

border: 2px solid;

resize: horizontal;

overflow: auto;

answered