Replies: 1 comment 2 replies
-
My best guess is that the DataTable never reaches an |
Beta Was this translation helpful? Give feedback.
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.
-
I'm noticing some really weird behavior for columns in DataTable that I don't fully understand.
I've got a program that asynchronously inserts data into a DataTable using a callback to an "add_row" method. The program will insert data into columns in varying orders depending on the results of the async work going on in the background. This means that columns[0] might not always be the first column entered into.
What I've observed is that, the first two columns that get any data inserted into them will auto-resize based on new cell content, but other columns that get data any later will not update their widths. I've tried
refresh_column
andrefresh_row
but they did not seem to make any changes to rendering.I've written a little demo program that shows what I'm experiencing. Is there something that I might be missing?
Beta Was this translation helpful? Give feedback.
All reactions