You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to debug this by myself, I found that jQuery.floatThead's reflow event looses the real table thead, which makes the table shrink vertically.
I tried to replace the reflow call and use "destroy + reinstall", but the behavior tends to be even worse: in my angular application, it leads to thead being missing on completely unrelated tables with floatThead enabled too...
Any idea?
The text was updated successfully, but these errors were encountered:
It seems that the reflow within the ngModel formatters is not waiting for the table to render. I tested this by adding some delay to the timeout. It worked better at about 300 milliseconds for me. Probably not the perfect solution but I think this is where the issue is.
Hi!
I experience an issue when the table data changes on the ng-model. The first
tbody>tr
seems to disappear below the floatedthead
.See https://jsfiddle.net/t12doyro/1/. When pressing the change-data button, row n°0 disappears.
Trying to debug this by myself, I found that jQuery.floatThead's
reflow
event looses the real tablethead
, which makes the table shrink vertically.I tried to replace the
reflow
call and use "destroy + reinstall", but the behavior tends to be even worse: in my angular application, it leads tothead
being missing on completely unrelated tables with floatThead enabled too...Any idea?
The text was updated successfully, but these errors were encountered: