Re: Handling SVG images

2016-09-10 Thread Christoph Läubrich
Also keep in mind that calling "getBytes()" without encoding is dangerous. You should explicitly specify the encoding (default UTF-8 for XML/SVG) Am 03.09.2016 20:33, schrieb Tim Dudgeon: Thank you. That did the trick. - To

Re: WicketTester Access Component Specific resource bundles

2016-09-10 Thread Martin Grigorov
Hi, Where exactly do you need this value ? Is it in a component or in the test ? I guess it is in the test code. You can use something like: headerPanelInstance.getString("resource-key") Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Sat, Sep 10, 2016 at 12:59 A

Re: Form from post to multipart

2016-09-10 Thread Martin Grigorov
Hi, Thanks for sharing your solution! IMO this is a special case that is not that common to be in Wicket core. It also assumes that Form#setOutputMarkupId(true) has been called. What about marking the form as multipart from the beginning (Form.setMultipart(true)) ? I think it should work even i t