Re: 回覆:How to add a widget inside a Text Area GWT

2011-07-18 Thread gangurg gangurg
Thanks , I did that but the widget does not show up . Do you have any example 2011/7/17 yes2000 kent.yeh2...@gmail.com In GWT, If one widget can contain another widget, It must be implement

Re: 回覆:How to add a widget inside a Text Area GWT

2011-07-18 Thread mP
While you cant add a widget to a text area if you want to make it so a widget appears inside a TextArea, you can achieve this by positioning another separate widget over the same area that the text area occupies. Dont forget to set the z index so the overlapping widget appears in front of the

How to add a widget inside a Text Area GWT

2011-07-17 Thread gangurg gangurg
How do i add a widget inside a GWT Text Area . I want to a Grid ,or VerticalPanel or HorizontalPanel -- 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. To unsubscribe

回覆:How to add a widget inside a Text Area GWT

2011-07-17 Thread yes2000
In GWT, If one widget can contain another widget, It must be implement HasWidgetshttp://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/user/client/ui/HasWidgets.htmlinterface. So if you wnat int add a widget to your GWT Text Area, you first should check your GWT Text Area