Help, UIBinder and mixed mode HTML

2011-02-01 Thread John Gentilin
I have a UIBinder file that specifies a HTMLPanel that contains a mix of plain HTML and GWT widgets. If I don't bind any of the variables, the Widget will load correctly and display. As soon as I bind a UI field in my code including the @UIField definition, @UiField TextBox userid; then

Re: Help, UIBinder and mixed mode HTML

2011-02-01 Thread Jan Mostert
Maybe post the code that you use to bind the component, problem is most likely there. -- Jan Vladimir Mostert BEngSci Mail: j...@mycee.com MyCee Technologies On Tue, Feb 1, 2011 at 10:20 AM, John Gentilin gent...@gmail.com wrote: I have a UIBinder file that specifies a HTMLPanel that

Re: Help, UIBinder and mixed mode HTML

2011-02-01 Thread John Gentilin
My Java class is just the plain vanilla code when you use the wizard to create a UIBinder object, I have not added any functionality. The only changes I have done is to comment out the @UIField definitions that the WindowsBuilder editor inserted. Including any one of the 6 fields I defined

Re: Help, UIBinder and mixed mode HTML

2011-02-01 Thread John Gentilin
My bad... My java code was generic but I started with a copy of the java code + template from an exiting source which had constructor code of initWidget(uiBinder.createAndBindUi(null)); vs initWidget(uiBinder.createAndBindUi(this)); Which works till you bind something :-) -John G On