Re: convert xml file to html file to GWT

2010-12-31 Thread Markus Kramer
Initially I attempted to do the same thing for my latest GWT application. GWT doesn't support it itself and it's very browser dependent. Sarissa works more or less. However, it was a lot of pain and didn't really work. Maybe I can find the code I wrote for this... In the end I parsed the XML and

Re: GWT panel for HTML UL/LI lists

2010-10-05 Thread Markus Kramer
(DOM.createElement(tagname));     }     // more stuff in here . } I'm not sure I understand the need for the special clear() method implementation in your code. -Andy On Sep 24, 5:51 pm, Markus Kramer tomaton...@googlemail.com wrote: Hi, for my current GWT project I wanted to make more use

Re: GWT panel for HTML UL/LI lists

2010-10-03 Thread Markus Kramer
! regards opn On Oct 2, 11:42 am, Markus Kramer tomaton...@googlemail.com wrote: Yes that's true. But I don't like the UIBinder stuff that much. There is a lot which I found difficult to do with UIBinder, so I'll stay with the old way. Just a personal taste. On Sep 27, 6:45 am, lalit

Re: GWT panel for HTML UL/LI lists

2010-10-02 Thread Markus Kramer
the layout in ui.xml and insert  the widget in the li tags. On Sep 25, 2:51 am, Markus Kramer tomaton...@googlemail.com wrote: Hi, for my current GWT project I wanted to make more use of HTML UL/LI elements than the table based layouts that you normally use in GWT applications. Biggest

GWT panel for HTML UL/LI lists

2010-09-25 Thread Markus Kramer
Hi, for my current GWT project I wanted to make more use of HTML UL/LI elements than the table based layouts that you normally use in GWT applications. Biggest advantages for me is that other people can make changes to the layout/design of the page without having to touch the code itself. I