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
This only happens if deployed after running npm run build script, it won't happen in IDE or local run. When the columns have sorteable attribute set to true, headers move to the bottom of the grid.
To Reproduce
Create a grid and populate with data in code
run npm run build
deploy to your favorite server (In my case Tomcat)
Browse to the page and see that headers are at the bottom.
Describe the bug
This only happens if deployed after running npm run build script, it won't happen in IDE or local run. When the columns have sorteable attribute set to true, headers move to the bottom of the grid.
To Reproduce
Link to code example:
Just a column:
{ key: "dateEffective", name: "Effective Date", editable: false, sorteable: true, renderCell(props) { return props.row.dateEffective ? timeStampFormatter.format(new Date(props.row.dateEffective)) : ""; } },
Expected behavior
Headers should show on the top
Environment
react-data-grid
version: 7.0.0-beta.47react
/react-dom
version: 18.3.1Additional context
The text was updated successfully, but these errors were encountered: