Re: Exceptional upgrade experience 6.14.0 - 6.17.0

2014-10-17 Thread Martin Grigorov
I don't believe you ! Especially with OSGi involved ! :) I hope the experience will be similar when upgrading to Wicket 7.x following our most detailed to date migration guide https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+7.0 . Martin Grigorov Wicket Training and

Adding custom string resource bundle

2014-10-17 Thread Maxim Solodovnik
Hello All, I'm currently migration huge 1.4.x project to 6.17.0 and have question about custom string bundle CommonWebApplication.java CommonWebApplication.xml CommonWebApplication_de.xml class CommonWebApplication extends AuthenticatedWebApplication { @Override protected void init() {

Re: Adding custom string resource bundle

2014-10-17 Thread Martin Grigorov
Hi, Try with properties.xml as extension. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, Oct 17, 2014 at 11:11 AM, Maxim Solodovnik solomax...@gmail.com wrote: Hello All, I'm currently migration huge 1.4.x project to 6.17.0 and have question about

Re: Adding custom string resource bundle

2014-10-17 Thread Maxim Solodovnik
doesn't help :( will try to create quckstart On 17 October 2014 15:16, Martin Grigorov mgrigo...@apache.org wrote: Hi, Try with properties.xml as extension. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Fri, Oct 17, 2014 at 11:11 AM, Maxim Solodovnik

Re: Adding custom string resource bundle

2014-10-17 Thread Martin Grigorov
On Fri, Oct 17, 2014 at 11:11 AM, Maxim Solodovnik solomax...@gmail.com wrote: Hello All, I'm currently migration huge 1.4.x project to 6.17.0 and have question about custom string bundle CommonWebApplication.java CommonWebApplication.xml CommonWebApplication_de.xml class

Re: Adding custom string resource bundle

2014-10-17 Thread Maxim Solodovnik
It helps! thanks a lot! On 17 October 2014 15:49, Martin Grigorov mgrigo...@apache.org wrote: On Fri, Oct 17, 2014 at 11:11 AM, Maxim Solodovnik solomax...@gmail.com wrote: Hello All, I'm currently migration huge 1.4.x project to 6.17.0 and have question about custom string bundle

Wicket Bootstrap 0.9.7 is released

2014-10-17 Thread Martin Grigorov
Hi, Wicket Bootstrap 0.9.7 has been released and soon will be available at Maven Central. New features: - three state checkbox based on https://github.com/kartik-v/bootstrap-checkbox-x/ - automatic detection of IE6-8 and contribution of html5shiv.js and respond.js - Integration with

Re: Is this possible?

2014-10-17 Thread Wayne W
Many thanks - I will have a look. On Thu, Oct 16, 2014 at 7:21 PM, Zala Pierre GOUPIL goupilpie...@gmail.com wrote: You can try wicket-quickview, which is based on the stuff in the link Martin provided. It works pretty well IMHO, and it is Wicket 6.0 compliant:

Re: Table Tree expand node

2014-10-17 Thread Sven Meier
Hi, can you reproduce the same problem here? http://wicket-dnd-jquery.appspot.com On the bottom of the page you'll find a TableTree, once you expand a node the scrollbars appear correctly. Regards Sven On 10/16/2014 11:20 PM, Mihir Chhaya wrote: Thanks, Sven for your suggestion. I

Re: Could not clear select2Choice component model value.

2014-10-17 Thread Maxim Solodovnik
Martin, I have forked select2, unfortunately I'm still not sure how to fix the issue :( Clean link is added to the form and select data is being restored from requestParameters :( On 13 October 2014 19:06, Martin Grigorov mgrigo...@apache.org wrote: Maxim, Feel free to fork it! I.e. move it

Stateful StatelessForm works most of the time. How to make it crash?

2014-10-17 Thread pureza
Dear Wicket users, I believe I have found the cause of a long standing issue in my application. Basically, a form would submit with everything set to null or the default values even when the user filled in all the information. The problem is that this only happened once in a while and I was never

Re: Anyway of stopping this?

2014-10-17 Thread Wayne W
Hi Sven, We don't set the RenderStrategy so we should (in wicket 6) be using this default strategy. Any other idea? On Thu, Oct 16, 2014 at 8:28 PM, Sven Meier s...@meiers.net wrote: Hi, what RenderStrategy are you using? WIth REDIRECT_TO_BUFFER Wicket should send a redirect to the search

Re: Anyway of stopping this?

2014-10-17 Thread Wayne W
Ah sorry please ignore me. It seems we had this in the code: // use this page renderer provider to avoid useless 302 redirections setPageRendererProvider(new IPageRendererProvider() { @Override public PageRenderer get(RenderPageRequestHandler context) { return new WebPageRenderer(context) {

Re: Table Tree expand node

2014-10-17 Thread Mihir Chhaya
Thanks, Sven. I tried to play around with CSS in chrome dev tools to reproduce the error on web link above but could not. Also, I compared CSS with my code from chrome dev tools. I can see some additional Bootstrap css for my page, but un-checking those references did not do help. I have made

Return to an html id on a response page

2014-10-17 Thread Nigel P. Weymont
Can somebody point me in the right direction with the following? I have the following scenario: I have a link from Page A to Page B. On page B a search is performed and the results are presented in a DataView. The user clicks on a row to select the result and is returned to Page A. I would

Re: Return to an html id on a response page

2014-10-17 Thread Sven Meier
Hi, you should not keep references from one page to other pages, use a PageReference instead. See the following for some ideas on how to scroll to an anchor: http://stackoverflow.com/questions/14436899/how-to-add-anchor-in-wickets-setresponsepage Regards Sven On 10/17/2014 07:57 PM, Nigel

Re: Return to an html id on a response page

2014-10-17 Thread Nigel W
Thank you Sven, I will take a look at these, Nigel On Fri, Oct 17, 2014 at 4:27 PM, Sven Meier s...@meiers.net wrote: Hi, you should not keep references from one page to other pages, use a PageReference instead. See the following for some ideas on how to scroll to an anchor: