nested table

2011-08-25 Thread preben
Hi My wicket experience is quit rusty so forgive me if this is a simple question, but I have not been able to find any example of this. I want to render at table with a nested table in one of the cells. eg. MyClass1 String attribute1; String attribute2; MyClass2 String

Re: nested table

2011-08-25 Thread Pedro Santos
...@dr.dk Hi My wicket experience is quit rusty so forgive me if this is a simple question, but I have not been able to find any example of this. I want to render at table with a nested table in one of the cells. eg. MyClass1 String attribute1; String attribute2; MyClass2

Re: How to handle these nested table tags

2007-09-10 Thread Roland Huss
Hi, td width=284 align=center class=welcomeBox ¡¡ Welcome label wicket:id=userName/label Could it be, that label is not supported as markup for a Label component and that you should use something like instead ? ... roland -- View this message in context:

Re: How to handle these nested table tags

2007-09-10 Thread Kevin Liu
Thank you for your help! But the major problem is The Label Is Not at the same level as the form , the Label is deep inside those table tags. Is there any solution to this kind of problem. Thanks again~ Kevin Liu [EMAIL PROTECTED] wrote: I have a html page that displays welcome ,XXX ,or

Re: How to handle these nested table tags

2007-09-10 Thread Ryan Holmes
No, LABEL is a valid HTML element for a Label component (it would be pretty twisted if it wasn't ;)). Besides, if a tag check was failing, the error message would say so. But keep the guesses coming. That's all I've been able to for Kevin so far... -Ryan On Sep 10, 2007, at 12:00 AM,

Re: How to handle these nested table tags

2007-09-10 Thread Igor Vaynberg
this is already fixed in trunk -igor On 9/10/07, Kent Tong [EMAIL PROTECTED] wrote: Kevin Liu-4 wrote: Unable to find component with id 'userName' in [MarkupContainer [Component id = _relative_path_prefix_14, page = com.cmip.web.pages.TopFrame, path =

Re: How to handle these nested table tags

2007-09-09 Thread Ryan Holmes
hmmm... the hierarchies seem to match. The only weird things I see are that your img tags are unclosed (Wicket may require valid xml templates -- I'm not sure because I always use xhtml) and your call to add the topForm component uses an explicit this reference. I can't remember if this