Hello
i'm using fckeditor 2.0 rc2 with ie6
i've set
FCKConfig.UseBROnCarriageReturn = true
The problem is that when i want to insert an unordered list, it begins at the top of the document putting everything in the <UL> tag.
I think that this is due to the fact that it can't be able to find tha last </p> tag.
thanks in advance,
kikkauz
i'm using fckeditor 2.0 rc2 with ie6
i've set
FCKConfig.UseBROnCarriageReturn = true
The problem is that when i want to insert an unordered list, it begins at the top of the document putting everything in the <UL> tag.
I think that this is due to the fact that it can't be able to find tha last </p> tag.
thanks in advance,
kikkauz
RE: UnorderedList problem with ie6
For what I need I solved it adding this lines
if ((commandName=='InsertUnorderedList' || commandName=='InsertOrderedList') && FCKConfig.UseBROnCarriageReturn) {
FCK.CleanAndPaste("</P><P>");
}
at the beginning of the function
FCK.ExecuteNamedCommand
in
fckeditorcode_ie_2.js
but i know it's not the best solution, because now putting an existing line in a <LI> tag doesn't work.
if anyone has a better solution I will appreciate.
bye
kikkauz
RE: UnorderedList problem with ie6
Did you find any better solution for this, We are using FCK 2.3.2 and am not finding fckeditorcode_ie_2.js , instead I see fckeditorcode_ie.js ,
But if I make the changes as you have suggested, I am getting you are making, I am getting invalid method exception.
Pls let me know how to solve this.
Thanks