Wicket EnclosureContainer - any changes to behaviour from 6.x -> 7.x?

2021-09-11 Thread Chris Colman
We're in the middle of migrating a large enterprise content management system (>1000 UI classes) from 6.x to 7.x. We've finally got it compiling with Wicket 7.x but we're having an issue with an EnclosureContainer that worked fine in Wicket 6.x. org.apache.wicket.WicketRuntimeException:

Re: Wicket EnclosureContainer - any changes to behaviour from 6.x -> 7.x?

2021-09-11 Thread Chris Colman
I found a workaround (which may be the intended usage but the API docs don't seem very explicit in regard to EnclosureContainer) When using an EnclosureContainer don't use the wicket:enclosure tag like you do when not using an EnclosureContainer! Use some standard HTML e.g. div or span

Re: Wicket EnclosureContainer - any changes to behaviour from 6.x -> 7.x?

2021-09-11 Thread Martin Grigorov
On Sun, Sep 12, 2021, 08:03 Chris Colman wrote: > We're in the middle of migrating a large enterprise content management > system (>1000 UI classes) from 6.x to 7.x. > > We've finally got it compiling with Wicket 7.x but we're having an issue > with an EnclosureContainer that worked fine in