Hello,
I have a data grid that has fixed 60px width on the first column. The other two columns dont have fixed width.
Because these two columns without a fixed width can contain a large text I want to make sure that the text is not wrapped/hidden and I call the autoFitColumns() method only for these two columns inside the dataBound event handler.
This autoFitColumns() also touches the width of the first column and its not fixed 60px anymore even though I didnt execute autoFitColumns() for it.
How can I achieve the case that the first column width is fixed and never changed and the other columns are auto fit so
that the text is not wrapped/hidden?
Here is a link to the sandbox - https://codesandbox.io/s/vue-forked-px12n?file=/src/App.vue