Hello,
It is possible to avoid GridView adjustment to the screen size, so that when a column has too much data the horizontal scroll is enabled and the content is shown in one line?
Right now I have in the Grid:
column1 | column2 | column3
---------------------------
text1 | text2 | lorem
| | ipsum
---------------------------
What is needed:
column1 | column2 | column3
---------------------------
text1 | text2 | lorem ipsum... -> width to fit all the content in one line
---------------------------
I tried
'contentOptions' => ['style' => 'width:100px']
in the last column but the size never surpasses the width of the screen.
Thank you.