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
I am working in a project that uses react-data-grid 5.0.4.
My task is to switch displaying data from traditional tabular format to horizontal view. E.g.
I achieved this layout using the CSS code. Cells that contains number values can be focused, but not those with strings. Also sometimes when trying to edit a cell it shows the value of the last cell selected.
I am working in a project that uses react-data-grid 5.0.4.
My task is to switch displaying data from traditional tabular format to horizontal view. E.g.
I achieved this layout using the CSS code. Cells that contains number values can be focused, but not those with strings. Also sometimes when trying to edit a cell it shows the value of the last cell selected.
This is the CSS code I added:
Also to display the edit cell in the correct position I added this:
onCellClick = ({ rowIdx, idx }) => {
console.log("rowIdx", rowIdx, "idx", idx);
};
The text was updated successfully, but these errors were encountered: