Hello everybody,
Java: 6
GWT: 1.6.4
GXT: 2.0-m1
IE : 7
Firefox: 3.0.8
The HtmlEditor behaves differently in Internet Explorer and Firefox by
"new line"/"line break" (Enter).
The HtmlEditor used internally the RichTextArea.
IE converted the HtmlEditor "new lines" to HTMLTag - P:
<P>dummy test</P>
<P>dummy test</P>
<P>dummy test</P>
Firefox converted the HtmlEditor "new lines" to HTMLTag - BR:
dummy test<br>dummy test<br>dummy test<br>dummy test<br>
This behavior is also here (http://gwt.google.com/samples/Showcase/
Showcase.html#CwRichText) understandable. Write more than one line in
IE (Enter == P) and and then in Firefox (Enter == BR).
What should I do, so he Internet Explorer (IE) shows/convert no
longer "line break" to HTML-Tag P but to BR?
Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---