RichTextArea not showing right!!!

2009-10-23 Thread Joaoh82
I am new to GWT so maybe I am just forgeting something... import com.google.gwt.user.client.ui.RichTextArea; final RichTextArea rText = new RichTextArea(); RootPanel.get().add(rText); Basicaly what I am doing is this, but it is showing what looks like a textbox with several lines, but with

Re: RichTextArea not showing right!!!

2009-10-23 Thread Prashant
see GWTShowcase demo. Hint: you need to add the toolbar separately. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com

Re: RichTextArea not showing right!!!

2009-10-23 Thread Max Zhu
Please refer to sample code. RichTextToolbar is not part of the GWT library. You can use following code to add your tool bar. RichTextArea textArea = new RichTextArea(); RichTextToolbar toolbar = new RichTextToolbar(textArea); toolbar.setWidth(100%); panel.add(toolbar); panel.add(textArea); On

Re: RichTextArea not showing right!!!

2009-10-23 Thread Joaoh82
Thanks, I had to import the class from the samples package but it worked... On 23 out, 13:29, Max Zhu thebb...@gmail.com wrote: Please refer to sample code. RichTextToolbar is not part of the GWT library. You can use following code to add your tool bar. RichTextArea textArea = new