how to use UIbinder

2014-04-08 Thread Francesco Viscomi
Hi all, i'm new on GWT; I followed the example on http://www.gwtproject.org/doc/latest/DevGuideUiBinder.html the one with title Hello Widget World; and everything seems right; My answer is how i can see the word Hello able baker charlie (that is what is printed in Hello.ui.xml); file

Re: how to use UIbinder

2014-04-08 Thread Alberto Mancini
Hi, you have to insert your widget into the dom: RootPanel.get.add(helloWorld); just before the end of onModuleLoad. Cheers, Alberto On Tue, Apr 8, 2014 at 11:28 AM, Francesco Viscomi fvisc...@gmail.comwrote: Hi all, i'm new on GWT; I followed the example on

Re: how to use UIbinder

2014-04-08 Thread Francesco Viscomi
Thanks Alberto; just another thing; I want to display the names in just one tab so i've changed the file Hello.ui.xml as reported below; But i'm able to view the multitab section but i cannot see the names anymore; Could you give me help once again? ===

Re: how to use UIbinder

2014-04-08 Thread Alberto Mancini
Hi, I think that the problem is that TabLayoutPanel has to be used woth LayoutPanels (http://www.gwtproject.org/doc/latest/DevGuideUiPanels.html#LayoutPanels) whereas i told you to use RootPanel (that is not a LayoutPanel). Change RootPanel.get.add(helloWorld); with

Re: how to use UIbinder

2014-04-08 Thread Francesco Viscomi
Grazie Alberto; infinite grazie Il giorno martedì 8 aprile 2014 11:28:05 UTC+2, Francesco Viscomi ha scritto: Hi all, i'm new on GWT; I followed the example on http://www.gwtproject.org/doc/latest/DevGuideUiBinder.html the one with title Hello Widget World; and everything seems

Re: How to use UIBinder

2010-01-22 Thread Iqbal Yusuf Dipu
GWT UiBinder “helloworld” with HTML http://wp.me/PnkVx-L -- 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-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: How to use UIBinder to create customized tags

2010-01-04 Thread Hans Speijer
Any news on this topic? Could you be a bit more specific on how you patched UIBinderWriter? On Dec 24 2009, 5:15 am, Rick rick4...@gmail.com wrote: Thanks Thomas I am successful to create my customized tag by patching UIBinderWriter - registerParsers() method. I think GWT has done most of the

Re: How to use UIBinder to create customized tags

2010-01-04 Thread Rick
Hi You need to write your own parser taking clue from DockLayoutPanelParser. Then You need to register this parser in UIBinderWriter's registerParsers() method. Feel free if I can further help. Thanks and regards Rick On Jan 4, 6:11 pm, Hans Speijer hans.spei...@gmail.com wrote: Any news on

Re: How to use UIBinder

2009-12-31 Thread Wrenbjor
I wish someone @ Google or a well versed GWT dev could but together a screen cast on UIBinder, I am so lost On Dec 15, 10:33 am, Tristan tristan.slomin...@gmail.com wrote: Aside from official docs I haven't seen much (and I've been looking because of Gin and UiBinder issues I've been

Re: How to use UIBinder to create customized tags

2009-12-23 Thread Rick
Any idea friends??? I request from GWT members to reply this post please. Regards Rick On Dec 22, 9:28 am, Rick rick4...@gmail.com wrote: Thanks Thomas Widgets are now adding by implementing HasWidgets interface. But I need to do a little more. As there are tags in DockLayoutPanel --

Re: How to use UIBinder to create customized tags

2009-12-23 Thread Rick
Thanks Thomas I am successful to create my customized tag by patching UIBinderWriter - registerParsers() method. I think GWT has done most of the work for supporting customized tag but keeping it private. On Dec 23, 6:48 pm, Thomas Broyer t.bro...@gmail.com wrote: On Dec 22, 5:28 am, Rick

How to use UIBinder with customized composite widget

2009-12-21 Thread Rick
Hi all As GWT is adding widgets in Horizontal panel, in the same way I want to get element in my composite widgets so that I can manage their layout in onAttach means I want to get label and html in RComposite widget's on attach. ui.xml ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'

Re: How to use UIBinder with customized composite widget

2009-12-21 Thread Thomas Broyer
On Dec 21, 12:13 pm, Rick rick4...@gmail.com wrote: Hi all As GWT is adding widgets in Horizontal panel, in the same way I want to get element in my composite widgets so that I can manage their layout in onAttach means I want to get label and html in RComposite widget's on attach. ui.xml

Re: How to use UIBinder to create customized tags

2009-12-21 Thread Rick
Thanks Thomas Widgets are now adding by implementing HasWidgets interface. But I need to do a little more. As there are tags in DockLayoutPanel -- g:north, g:west, in the same way, I want to create my own customized tags like my:left,my:right etc so that I can arrange my layout accordingly.

How to use UIBinder

2009-12-15 Thread Nian Zhang
The UiBInder is diffcult to use, may be it's easy for the developers who were familiar with it, but to the new one, iit's hard to start, so is there any tutorials about this? Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: How to use UIBinder

2009-12-15 Thread Tristan
Aside from official docs I haven't seen much (and I've been looking because of Gin and UiBinder issues I've been having) If anyone is putting together a tutorial, it'd be great if you showed how to use GIN effectively in a non-trivial example (so, an injected view dependent on other injected