Breadcrumbs in conjunction with forms

2010-10-05 Thread Michael Strecker
Hello list, I stumbled across another issue working with Wicket. I'm using a form on a page, and I'd like to add breadcrumbs to this page as well. The problem here: Once I add breadcrumbs, the page will not render properly after the form is submitted. It will stop rendering just after the first

Re: Breadcrumbs in conjunction with forms

2010-10-05 Thread Michael Strecker
Resolved the issue. We have our own breadcrumbs, and therefore a non standard way to use the Wicket API. We were passing around Wicket components in code and reusing them on multiple pages. This didn't go well with our custom-written behaviors. Thanks for the debugging hint, after lots of

Re: .properties in conjunction with ListView

2010-08-05 Thread Michael Strecker
Yes. I'd like to replace the default validator messages (such as sdf is not a valid Double) with my own messages, but only in this specific application, so changing the defaults is not an option. Furthermore, I'd like to change the names of the textfields once to be able to use il8n, since the

.properties in conjunction with ListView

2010-08-04 Thread Michael Strecker
Hello list, I'm currently working on a page which contains a ListView of several items from a database. Naturally, the hierarchy of the DOM is form.1.item, form.2.item, and so on. I'd also like to use .properties, so I can use il8n and have customized messages. The question is, how can I make

.properties in conjunction with ListView

2010-08-04 Thread Michael Strecker
Hello list, I'm currently working on a page which contains a ListView of several items from a database. Naturally, the hierarchy of the DOM is form.1.item, form.2.item, and so on. I'd also like to use .properties, so I can use il8n and have customized messages. The question is, how can I make