Re: couldn't add push button to the DOM

2010-12-17 Thread gandham satish
Thanks for your quick response Amir. Looks like it is working if I add it through UIBInder. satish On Dec 17, 6:11 am, Amir Kashani amirkash...@gmail.com wrote: There's a few subtle and important steps that GWT takes when attaching a widget to the DOM. Generally, you shouldn't try to do this

couldn't add push button to the DOM

2010-12-16 Thread gandham satish
Hi, I am trying to create a simple header with caption and close button at the right end. I have created simple table with single row having two columns. I have added label in the first column and close button image in the next column. It is working fine when I added the image but not working

Re: couldn't add push button to the DOM

2010-12-16 Thread Amir Kashani
There's a few subtle and important steps that GWT takes when attaching a widget to the DOM. Generally, you shouldn't try to do this manually. Rather, take a look at HTMLPanel -- it supports mixing Widgets with HTML markup. If the markup is complicated, it's probably worth using UiBinder. -