Sajnos az IE 9-nek van egy kis problémája az ExtJS-sel: Error: Object doesn't support property or method 'createContextualFragment'. Adjuk hozzá a hiányzó metódust:
if (typeof Range !== "undefined" && !Range.prototype.createContextualFragment) {
Range.prototype.createContextualFragment = function (html) {
var frag = document.createDocumentFragment(),
div = document.createElement("div");
frag.appendChild(div);
div.outerHTML = html;
return frag;
};
}
Range.prototype.createContextualFragment = function (html) {
var frag = document.createDocumentFragment(),
div = document.createElement("div");
frag.appendChild(div);
div.outerHTML = html;
return frag;
};
}