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
We spent hours trying all kinds of things to get this to work, only to find out it's a bug in Kendo template binding. Any chance this can be escalated?
if (element.nodeName.toLowerCase() == "table") {
if (!element.tBodies[0]) {
element.appendChild(document.createElement("tbody"));
}
element = element.tBodies[0];
}
Basically, it needs to account for the fact that the template may include <tbody> tags itself, so the above code shouldn't insert its own <tbody> tag as well.
Reproduction:
The text was updated successfully, but these errors were encountered: