-
Notifications
You must be signed in to change notification settings - Fork 46.8k
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
Dynamically changing rowSpan #3661
Comments
@syranide In master we now have a warning, at least. |
@spicyj Fantastic :) |
Thanks for the help. It is an easy fix, but I would probably never found out about it on my own. I think there should be a warning of some sort about including |
@RudmanMario That's what I meant by my comment, sorry for being unclear – in the next release we'll warn you explicitly and suggest adding a tbody tag. |
I have a problem when trying to update my table. This is how my initial table looks like:
So the rowspan here works fine. My "Row" table cell looks like this:
So I'm looking for the length of ordinates array for axis Y and that is the number of rows which I want my "Row" cell to cover.
Then when user clicks
"Add new Y ordinate"
, a new ordinate is pushed and table re-renders. This is the end result:So for some reason, although the rowspan changes to 4 and I can see that when inspecting elements, for some reason the table cell spans only across 3 rows. Why is that? Is it a bug?
I made a fiddle so you can see the problem.
The text was updated successfully, but these errors were encountered: