Hi,
I'm having a problem with ordered/unordered lists not working (FCK2.6 and IE 7, FireFox works fine) when the user
does the following
1. click on ordered/unordered list in toolbar
2. enter text
3. hit <Enter>
and the result is that the list is not continued on the next line. It must be some kind of integration issue because this works fine
in the fck demo.
Thanks for any suggestions,
Nick
I'm having a problem with ordered/unordered lists not working (FCK2.6 and IE 7, FireFox works fine) when the user
does the following
1. click on ordered/unordered list in toolbar
2. enter text
3. hit <Enter>
and the result is that the list is not continued on the next line. It must be some kind of integration issue because this works fine
in the fck demo.
Thanks for any suggestions,
Nick
Re: ordered/unordered lists problem (FCK2.6 and IE 7)
oEditor.SwitchEditMode();
just before a call to
oEditor.SetHTML(text);
and this seems to have caused the issue messing up how lists work in IE.
After switching the order of the calls the problem is resolved.
Nick