I would like to have a ListGrid with variable width, having some columns with fixed widths and some with variable widths depending on the remaining space.
For example:
The grid's initial width is 300 pixels and it has 4 columns. I have 2 columns in it with fixed width (50 pixels), which means there are 200 pixels left for the other two columns. I want these two columns to be equal in width (50% of the remaining space), thus 100 pixels each. If the browser is resized to 500 pixels, the width of these two columns should be 200 pixels.
Is this possible? I think setting the width to '50%' means "from the total grid width" (instead of the remaining grid width).
For example:
The grid's initial width is 300 pixels and it has 4 columns. I have 2 columns in it with fixed width (50 pixels), which means there are 200 pixels left for the other two columns. I want these two columns to be equal in width (50% of the remaining space), thus 100 pixels each. If the browser is resized to 500 pixels, the width of these two columns should be 200 pixels.
Is this possible? I think setting the width to '50%' means "from the total grid width" (instead of the remaining grid width).
Comment