Re: [Wicket-user] WicketTester in 1.2 causing "internal error cloning object" errors.

2006-06-22 Thread Gert Jan Verhoog
ntimeException: Internal error cloning object. Make sure > all dependent objects implement Serializable. Class: > wicket.util.tester.DummyHomePage > > > On 6/21/06, Gert Jan Verhoog <[EMAIL PROTECTED]> wrote: >> Hi list, >> >> After upgrading to Wicket 1.2

[Wicket-user] WicketTester in 1.2 causing "internal error cloning object" errors.

2006-06-21 Thread Gert Jan Verhoog
return new MyPage("hello world"); } }); } } - - - - - - - - - - - - - - - - - - - - - - - - - - What's happening here? Most of my pages use custom constructors to initialize the page, and every test method that use these cause the error. What can I do about it? cheers, Gert -- Gert Jan Verhoog Func. Internet Integratio

[Wicket-user] add either Image or Label to , how?

2005-08-09 Thread Gert Jan Verhoog
Hi list, I'm using DataTable to render a table. DataTable's markup fragment for the table cells looks like this: [cell] When I'm adding Labels, this poses no problems, but in one of my columns I'd like to display an image: item.add(new Image(componentId, new Model("status-a

[Wicket-user] either Label or Image in span, how?

2005-08-09 Thread Gert Jan Verhoog
Hi list, [I posted something very similar yesterday, but it never made it to the list, apparently. Apologies for double posting if the other one ever arrives] I'm using DataTable to render a table. DataTable's markup fragment for the table cells looks like this: [cell] When

Re: [Wicket-user] status of wicket-contrib-dataview?

2005-08-08 Thread Gert Jan Verhoog
On Aug 8, 2005, at 14:37, Johan Compagner wrote: that is a very much on the edge project! Yeah. It's exiting, isn't it? :-) I actually started out with my own implementations of paged/sortable lists, but my implementation turned out to be very similar to DataTable and its supporting classe

[Wicket-user] status of wicket-contrib-dataview?

2005-08-08 Thread Gert Jan Verhoog
Hi list, I'm playing around with the various list and paging components, and I was wondering about the status of wicket-contrib-dataview? Am I supposed to use this at all? I'm asking because I'm having problems using DataTable: - NavigatorLabel uses a method getRowsPerPage() of IPageable

Re: [Wicket-user] Custom component, how to declare background for TD?

2005-08-03 Thread Gert Jan Verhoog
On Aug 2, 2005, at 23:49, Dariusz Wojtas wrote: [..] [..] How do I use/specify the 2nd image when it is a background for the TD element? I would solve this with CSS. Use an external CSS file that contains the styling for the table. Images referenced in the CSS file are relative

Re: [Wicket-user] Problem with ErrorPage

2005-08-03 Thread Gert Jan Verhoog
On Aug 3, 2005, at 08:21, Jonathan Locke wrote: yeah, "InternalErrorPage" was meant to be a user-facing page without those kind of details... i suppose that could be considered a flaw. one nice thing i've seen done in some apps is that a nice user-friendly error page can also contain an HTML

[Wicket-user] Wicket + Acegi Security ?

2005-08-02 Thread Gert Jan Verhoog
Hi list, Just wondering if anybody has successfully used the Acegi security framework with Wicket (Phil?). I'm currently using Acegi with SpringMVC and I'd like to use it with Spring/Wicket. I guess the techniques from the signin examples will do for now, but in future I need more sophist

Re: [Wicket-user] Re: FieldLabel component

2005-07-30 Thread Gert Jan Verhoog
On Jul 30, 2005, at 11:57, Jan Bares wrote: label:after { content: ":"; } label.required:before { content: "*"; } label.error { font-style: italic; color: red;} Neat solution. However, what about IE that doesn't support content? Yeah, I know... the webdesigner's curse...

Re: [Wicket-user] FieldLabel component

2005-07-30 Thread Gert Jan Verhoog
On Jul 30, 2005, at 04:44, Igor Vaynberg wrote: This will create a field label that will turn red when the linked form component has an error. Another good use is to prepand an asterisk to the fieldlabel's label if the linked form component has a requiredvalidator added. I did more or less