-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Table] Make reordering work in the table example #1263
Conversation
10000, | ||
1000000, | ||
1000, | ||
100000, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rendering 1,000,000
cells now throws Maximum Call Stack Exceeded
errors because I'm saving the rows in memory to retain their order, which I wasn't doing before. So I got rid of that option for now.
Fix row insertionPreview: documentation | table |
This doesn't have the reorder handle icon in the interaction bar? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great to me! 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I discovered a bunch of bugs in this work, including:
Damn 🥇
Fix row insertionPreview: documentation | table |
Merge branch 'master' into cl/table-example-reorderingPreview: documentation | table |
Changes proposed in this pull request:
Column and row reordering now work in the Table example (had to totally change the data store backing the example, hence the new
DenseGridMutableStore
.I discovered a bunch of bugs in this work, including:
Screenshot