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
When rendering with row.getVisibleCells().map(cell => ... , how can I determine if a cell is the last column of a group? I basically want to add a right border to that cell (so, <td className="border-r border-blue-500">), such that every group is visually separated. So in the above example, there would be a right border after the lastName and height columns.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Given a basic example of column groups:
When rendering with
row.getVisibleCells().map(cell => ...
, how can I determine if a cell is the last column of a group? I basically want to add a right border to that cell (so,<td className="border-r border-blue-500">
), such that every group is visually separated. So in the above example, there would be a right border after thelastName
andheight
columns.Beta Was this translation helpful? Give feedback.
All reactions