IN kendo.core.js v2012.1.322
File :
// Internet Explorer does not support setting the innerHTML of TBODY and TABLE elements
try {
table.innerHTML = "<tr><td></td></tr>";
/**
* Indicates whether the browser supports setting of the <tbody> innerHtml.
* @name kendo.support.tbodyInnerHtml
* @property {Boolean}
*/
support.tbodyInnerHtml = true;
} catch (e) {
support.tbodyInnerHtml = false;
}
IN kendo.web.js2012.1.322
File
var tbodySupportsInnerHtml = kendo.support.tbodyInnerHtml,
if (tbodySupportsInnerHtml) {
that.tbody[0].innerHTML = html;
} else {
placeholder = document.createElement("div");
placeholder.innerHTML = "<table><tbody>" + html + "</tbody></table>";
tbody = placeholder.firstChild.firstChild;
that.table[0].replaceChild(tbody, that.tbody[0]);
that.tbody = $(tbody);
}