If you press "return key," in Sample FCKEditor,
It generates normally "<p> </p>"
"Return key" generates "<p> </p>" in FCKEditor.
I like to make "Return Key" generates no "<p> </p>" but "<br/>."
In order to make "return key" generates "<br> or <br/>" instead of "<p> </p>,"
what should I do, or which file should I modify?
It generates normally "<p> </p>"
"Return key" generates "<p> </p>" in FCKEditor.
I like to make "Return Key" generates no "<p> </p>" but "<br/>."
In order to make "return key" generates "<br> or <br/>" instead of "<p> </p>,"
what should I do, or which file should I modify?
RE: Generating "<br>" instead of "<p>
RE: Generating "<br>" instead of "<p>
FCKConfig.UseBROnCarriageReturn = true ;
Alternatively use [ctrl][enter] to put in a BR.
RE: Generating "<br>" instead of "<p>
FCKConfig.UseBROnCarriageReturn = true ;
Any other suggestions? I have also tried modifying the source code. There seems to be a function called "ExecuteNamedCommand". I cannot locate it, but have a hunch that if we change the condition statement where the <P> tag is used in the "ExecuteNamedCommand('FormatBlock','<P>')" call, it would also work.