Hi. I am trying to add some extra class to the td which I use the Cell component and expend the className prop.
However, I cannot resolve the original behaviour on the following simple code:
cellRenderer={(props) => <Cell {...props} />}
A significant mis-behaviour is that the arrow key navigation failure.
After reading along the code, I figure out a possible reason:
In DataCell there is a onKeyUp prop passed to cellRenderer but there are not used in Cell
Hi. I am trying to add some extra class to the td which I use the Cell component and expend the className prop.
However, I cannot resolve the original behaviour on the following simple code:
cellRenderer={(props) => <Cell {...props} />}
A significant mis-behaviour is that the arrow key navigation failure.
After reading along the code, I figure out a possible reason: In
DataCell
there is aonKeyUp
prop passed to cellRenderer but there are not used inCell
DataCell.js
Cell.js (missing
onKeyUp
)