Re: GWT widget -> HTML rendering

2009-05-20 Thread JK
Alyxandor, thanks a lot! That was exactly that help I needed. The only problem now is that it perfectly works in Hosted mode and in Safary but totally fails in Firefox. Firebug sais: uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMH

Re: GWT widget -> HTML rendering

2009-05-19 Thread Alyxandor
You can make your own widgets with custom html without wrappers, just be careful because event listening often relies on the proper html elements being present to operate properly {spans can be wonky when it comes to KeyListeners} The following code is for a simple widget that you can send arbitr

Re: GWT widget -> HTML rendering

2009-05-19 Thread JK
> My question is related to GWT widget -> HTML rendering. > > If I create the simplest HTML widget with html source inside: > >      add(new HTML("")); > > after adding on a page it will be processed into HTML as follows: > >       > >           > &

Re: GWT widget -> HTML rendering

2009-05-19 Thread Magius
Have you try using a FormPanel with a TextBox inside? It should be translated as a INPUT tag... On May 19, 2:00 pm, JK wrote: > Hello, > > My question is related to GWT widget -> HTML rendering. > If I create the simplest HTML widget with html source inside: >      add(new

GWT widget -> HTML rendering

2009-05-19 Thread JK
Hello, My question is related to GWT widget -> HTML rendering. If I create the simplest HTML widget with html source inside: add(new HTML("")); after adding on a page it will be processed into HTML as follows: which means that it adds wrap div for my HT