Note: I'm aware of issue #7002 and although it is listed as fixed in 3.6.2, I'm still running into the same error but under a different set of circumstances.
I'm using the CKEditor API to add a style class to an element in the editor. I then create a range which selects this element. When adding the style class and selecting this element (which is a div inside a table cell by the way), the entire element becomes selected and I sometimes see the "handlebars" around the element (or perhaps the end up around the table cell itself, I'm not sure).
Once I have this selection and attempt to insertHtml into the CKEditor, I hit the unspecified error in the selection plugin this.getNative().createRange() line (576). This only happens to me in IE8 and everything works fine in Chrome and Firefox.
My questions are:
- Is #7002 really fixed in 3.6.2 or am I missing something?
- Does anyone know of a workaround in IE8 for this issue or know the underlying root cause? I think I saw somewhere that it has to do with the document not being the same as the editor document, so I intentionally created my range with the editor document.
I'm using the CKEditor API to add a style class to an element in the editor. I then create a range which selects this element. When adding the style class and selecting this element (which is a div inside a table cell by the way), the entire element becomes selected and I sometimes see the "handlebars" around the element (or perhaps the end up around the table cell itself, I'm not sure).
Once I have this selection and attempt to insertHtml into the CKEditor, I hit the unspecified error in the selection plugin this.getNative().createRange() line (576). This only happens to me in IE8 and everything works fine in Chrome and Firefox.
My questions are:
- Is #7002 really fixed in 3.6.2 or am I missing something?
- Does anyone know of a workaround in IE8 for this issue or know the underlying root cause? I think I saw somewhere that it has to do with the document not being the same as the editor document, so I intentionally created my range with the editor document.