I have a grid like this:
I want some of the columns to be always fixed width, but others to be auto so they take up the horizontal space if the grid is expanded. Specifically, I want the string columns to take up the space but the boolean and checkbox columns to always be their initial size. This is like a combination of 'Auto' and 'Normal' for the mode of the ResizeOptions. Is there a way I can do this? If I set to Normal then nothing takes up the space, If I set it to Auto then some columns I don't want take up some extra space.
Cheers,
Paul
|
<e-column field='Verified' headerText='State' [allowResizing]='false' [displayAsCheckBox]="true" width="80"></e-column> |
Hi,
Unfortunately, this doesn't do what I want. I'm sorry but I should have mentioned I want the grid to be 100% wide, i.e. fit into the outer container. If I change app.component.html to this, you will see that the State column also resizes when I widen and shrink the size of the window on the right in the stackblitz. The other columns should be getting some of the extra space, but the State column should not. I will attach a video showing this.