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
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
)The text was updated successfully, but these errors were encountered: