EXTJS EXPLORE 9에서 createContextualFragment ERROR
2012. 6. 23. 11:30ㆍ프로그래밍/ExtJS
다음과 같은 문구를 추가!!
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; }; }
'프로그래밍 > ExtJS' 카테고리의 다른 글
Grid Row numberer paging 마다 증가 및 background Image 제거 (0) | 2012.07.18 |
---|---|
Grid Paging Tool bar 임의로 글자 넣기 (0) | 2012.07.18 |
Extjs Compositefield에서 Hide show Combobox 포함 오류 (0) | 2012.06.22 |
Grid CSS 조정 방법 및 셀 valign : middle 정렬 (0) | 2012.06.22 |
compositefield내 datefield invalid 문제점 (0) | 2012.05.24 |