Example: https://codepen.io/16adianay/pen/QwWKveW?editors=1010
Steps to reproduce:
- Open the attached demo;
- Scroll DataGrid horizontally.
Current results: Grouped rows disappear at some point.
Expected results: Grouped rows are visible while scrolling.
Additional information: Everything works correctly in v24.1: DataGrid - Fixed Column.
Workaround:
Use legacy column fixing:
JavaScriptDevExpress.ui.dxDataGrid.defaultOptions({
options: {
columnFixing: {
legacyMode: true
}
}
});
//
// modular ->
import DataGrid, { Properties } from "devextreme/ui/data_grid";
DataGrid.defaultOptions({
options: {
columnFixing: {
legacyMode: true
}
}
});