Replies: 1 comment 2 replies
|
Ah this is due to the wrapping. I will fix! |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
my text cell is getting this weird padding, have anyone else faced this before?
it occurs after i set row height dynamically to each row based on i's content:
rowHeight={(index) => {let height = 40;columns.map((col, idxCol) => {if(col.dataType === dataTypes.TEXT) {let newHeight = 10 + measureTextHeight(data[index][col.title].toString(), col.width-5, 14);height = (height < newHeight ? newHeight : height);}return height;})return height;}}All reactions