Table Resizable blocks dropping row #5884
Unanswered
NeoCoderMatrix86
asked this question in
Q&A
Replies: 1 comment 1 reply
-
I assume this "weird behavior" happens because of how Blazor rendering works. When each of the events is triggered, in turn it will also rerender current view. On each of those rerenders the I don't think there is an easy solution. If any. Only one I can think of is to use vanilla JS for reordering rows. That way, you will workaround the Blazor rendering. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello together,
I'm currently working on a Table with draggable rows in order to reorder them. Therefore I implemented the following table:
Basically the drag n drop works, but setting and unsetting the table resizable leads to strange behaviour. Unsetting it results in my drag beeing stopped because the component gets rerendered. Setting it back after the drop doesn't reset the resizing to be able at all columns. Is there a way to allow dragging a row above all borders even if they are resizable?
Beta Was this translation helpful? Give feedback.
All reactions