Re: close tag not found error in markup

2010-11-24 Thread andrea.castello
Basically, it is a (supposed) bug in version 1.4.13, something very similar to this https://issues.apache.org/jira/browse/WICKET-2620 Downgrading to 1.4.5 solved my issue. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/close-tag-not-found-error-in-markup

Re: close tag not found error in markup

2010-11-24 Thread Martin Grigorov
://issues.apache.org/jira/browse/WICKET-2620 Downgrading to 1.4.5 solved my issue. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/close-tag-not-found-error-in-markup-tp3055117p3057578.html Sent from the Users forum mailing list archive at Nabble.com

Re: close tag not found error in markup

2010-11-24 Thread Andrea Del Bene
Since version 1.4.6 DataTable HTML has changed to fix https://issues.apache.org/jira/browse/WICKET-2620. Component with id toolbar has been removed and that should cause the problem reported by Andrea. Until 1.4.5 /wicket:panel thead wicket:id=topToolbars wicket:container

Re: close tag not found error in markup

2010-11-24 Thread Ernesto Reinaldo Barreiro
Yes, I remember having to fix my own extension of DataTable when migrating between two 1.4.x versions. That might be the change you mention. Ernesto On Wed, Nov 24, 2010 at 5:55 PM, Andrea Del Bene adelb...@ciseonweb.it wrote: Since version 1.4.6 DataTable HTML has changed to fix

close tag not found error in markup

2010-11-23 Thread andrea.castello
] /td /tr /tbody tfoot /tfoot /wicket:panel Can you suggest me what can be wrong? Thanks, Andrea -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/close-tag-not-found-error-in-markup-tp3055117p3055117.html Sent from the Users forum mailing list archive

Re: close tag not found error in markup

2010-11-23 Thread Matthias Keller
Hi Andrea The error is: WicketMessage: close tag not found for tag: . Component: [MarkupContainer [Component id = toolbar]] I can't see a wicket:id=toolbar in your posted code, so the problem appears to be somewhere else on that page including the posted panel. Try to find that toolbar -

Re: close tag not found error in markup

2010-11-23 Thread andrea.castello
/tfoot /wicket:panel Thanks again, Andrea -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/close-tag-not-found-error-in-markup-tp3055117p3055144.html Sent from the Users forum mailing list archive at Nabble.com

Re: close tag not found error in markup

2010-11-23 Thread andrea.castello
code, just a trick to make it readable..) A. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/close-tag-not-found-error-in-markup-tp3055117p3055158.html Sent from the Users forum mailing list archive at Nabble.com

Re: close tag not found error in markup

2010-11-23 Thread Andrea Del Bene
Hi Andrea, maybe have you just missed close tag for topToolbars component? In the last code snippet I see just one /span tag. I am very sorry, but it seems like a portion of the code I paste is being stripped when I post it. This is the code that's nested inside the thead tag span

Re: close tag not found error in markup

2010-11-23 Thread andrea.castello
...@wicket.apache.org -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/close-tag-not-found-error-in-markup-tp3055117p3055290.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe

Re: close tag not found error in markup

2010-11-23 Thread Andrea Del Bene
Is there any code inside toolbar? Is just an empty component? I am very sorry, but it seems like a portion of the code I paste is being stripped when I post it. This is the code that's nested inside the thead tag span wicket:id = topToolbars span wicket:id = toolbar / span

Re: close tag not found error in markup

2010-11-23 Thread Matthias Keller
Hi Andrea Make sure you remove that whitespace in span - that should be span and the same for / span - /span. Valid HTML must not contain whitespace there. Matt On 2010-11-23 11:35, andrea.castello wrote: I am very sorry, but it seems like a portion of the code I paste is being stripped

Re: close tag not found error in markup

2010-11-23 Thread andrea.castello
Matt, thank you, but original code has no whitespaces. To add, more the html markup worked perfectly in my app with Wicket 1.3.6 while all seems to break when I upgrade to Wicket 1.4.13 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/close-tag-not-found-error