You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.
I have a project where I am using a DataGrid and it is very important that cells stay in the rows they were originally intended to be in (as it is rendering a data structure).
As the number of items in the DataGrid gets large, the available width starts being an issue. To combat this, I placed the DataGrid inside a ScrollPane. However, once the maximum number of cells that can be rendered in one line is reached (in my current case, this is 6), instead of allowing the DataGrid width to increase, allowing for scrolling, the component realises that it cannot fit more in the row and begins a new row. For the example I was trying, I had set maxCellsInRow to 7 at that point
I have a project where I am using a
DataGrid
and it is very important that cells stay in the rows they were originally intended to be in (as it is rendering a data structure).As the number of items in the
DataGrid
gets large, the available width starts being an issue. To combat this, I placed theDataGrid
inside aScrollPane
. However, once the maximum number of cells that can be rendered in one line is reached (in my current case, this is 6), instead of allowing theDataGrid
width to increase, allowing for scrolling, the component realises that it cannot fit more in the row and begins a new row. For the example I was trying, I had setmaxCellsInRow
to 7 at that pointIs there some way to force the number of cells in the row, allowing for scrolling?
TIA
The text was updated successfully, but these errors were encountered: