Re: Creating tr / td's with UiBinder, how?

2014-04-22 Thread Njr
Hi Mu uibinder contains My Uibinder page contains below code input name=data type=text class=form-control placeholder=Enter data id=data/ I want to get data inserted in above textbox in my gwt class using DOM or some other way if any. so please give me some example to retrieve it. Thanks

Re: Creating tr / td's with UiBinder, how?

2010-06-27 Thread Andrew Hughes
I don't want a div - as you point out this won't work... I would like to create a tr from UiBinder (with no div wrapping it). Cheers. On Sat, Jun 26, 2010 at 7:09 PM, Thomas Broyer t.bro...@gmail.com wrote: On 26 juin, 11:14, Andrew Hughes ahhug...@gmail.com wrote: What do you mean by

Re: Creating tr / td's with UiBinder, how?

2010-06-27 Thread Thomas Broyer
On 28 juin, 01:59, Andrew Hughes ahhug...@gmail.com wrote: I don't want a div - as you point out this won't work... I would like to create a tr from UiBinder (with no div wrapping it). But UiBinder internally uses a div to parse the HTML (see UiBinderUtil.fromHtml) Also, I didn't notice

Re: Creating tr / td's with UiBinder, how?

2010-06-26 Thread Andrew Hughes
Hi Chris Unfortunately... g:HTML says A widget that can contain arbitrary HTML. This widget uses a div element, causing it to be displayed with block layout. and g:HTMLPanel does the same. Both of these would end up producing... divtrtd/td/tr/div The div element WILL break the table. Thanks

Re: Creating tr / td's with UiBinder, how?

2010-06-26 Thread Andrew Hughes
What do you mean by parsing? Is this done by the UiBinder parsing the ui.xml templates to generate impl code? On Sat, Jun 26, 2010 at 8:32 AM, Thomas Broyer t.bro...@gmail.com wrote: On 25 juin, 17:22, Andrew Hughes ahhug...@gmail.com wrote: I want a template that produces a tr. The

Re: Creating tr / td's with UiBinder, how?

2010-06-26 Thread Thomas Broyer
On 26 juin, 11:14, Andrew Hughes ahhug...@gmail.com wrote: What do you mean by parsing? Is this done by the UiBinder parsing the ui.xml templates to generate impl code? No, I mean parsing done by the browser when you assign innerHTML. i.e. in plain old JavaScript: var container =

Creating tr / td's with UiBinder, how?

2010-06-25 Thread Andrew Hughes
I want a template that produces a tr. The following doesn't work, but it's what I was hoping for... !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.ui tr tdg:Label

Re: Creating tr / td's with UiBinder, how?

2010-06-25 Thread Chris Boertien
wrap it with g:HTML or g:HTMLPanel On Fri, Jun 25, 2010 at 9:22 AM, Andrew Hughes ahhug...@gmail.com wrote: I want a template that produces a tr. The following doesn't work, but it's what I was hoping for... !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder

Re: Creating tr / td's with UiBinder, how?

2010-06-25 Thread Thomas Broyer
On 25 juin, 17:22, Andrew Hughes ahhug...@gmail.com wrote: I want a template that produces a tr. The following doesn't work, but it's what I was hoping for... !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder