Re: Regarding Browser/Client info implementation

2015-12-24 Thread Rakesh A
I created JIRA ticket - https://issues.apache.org/jira/browse/WICKET-6056 PR links for master and wicket-6.x branches, are added at ticket comments section. -- View this message in context:

Re: programmatic resources lookup

2015-12-24 Thread Garret Wilson
On 12/24/2015 9:39 AM, Garret Wilson wrote: ... The use of StringResourceModel as you provided almost solved my problem, but not quite. When calling from MyPage.java, I had to add "this" to the constructor in order for it to pick up resources in the MyPage.properties files. P.S. It's a shame

Re: programmatic resources lookup

2015-12-24 Thread Sven Meier
Hi, the easiest solution would be not to use MessageFormat: getSession().success(getString("success.message", Model.of(fooBar))); with: success.message=Successfully munged the ${}. If you insist on using MessageFormat, you can just use StringResourceModel for that:

Re: Regarding Browser/Client info implementation

2015-12-24 Thread Rakesh A
Can you go through this check-in https://github.com/iamrakesh/wicket/commit/351f084872467f0d3d0f339ab9c20afb4f79d2d1 Or do you need PR? Regards, Rakesh.A -- View this message in context:

Re: Bug in wicket-jqueryui Kendo DateTimePicker?

2015-12-24 Thread hfriederichs
Hello Sebastien, It's the day of the week. SimpleDateFormat's javadoc: Date and TimePattern Result "EEE, MMM d, ''yy" Wed, Jul 4, '01 Hans -- View this message in context:

Re: Bug in wicket-jqueryui Kendo DateTimePicker?

2015-12-24 Thread Sebastien
Hi Hans, Lol, completely forgot this ! I am not really able to help today. Please check the forum and github issues, you should find some answers about this... If it still not helps, please create a quickstart and will have a look early next week. Merry Christmas, Sebastien On Dec 24, 2015

Bug in wicket-jqueryui Kendo DateTimePicker?

2015-12-24 Thread hfriederichs
Hello, I'm using wicket-jquery-ui version 6.21.0. (and Wicket 6.20.0) I'm adding a com.googlecode.wicket.kendo.ui.form.datetime.AjaxDateTimePicker: private final static String dateDisplay = "EEE d MMM "; private final static String timeDisplay = "HH.mm"; DateTimePicker scheduleDateTimeField

Re: Bug in wicket-jqueryui Kendo DateTimePicker?

2015-12-24 Thread Sebastien
Hi, What EEE stands for ? Java date patterns and kendo ui date patterns are very close, so a valid java pattern should make it work. Additionnally, you can use the culture option, please look at the samples... Hope this helps, Sebastien

Re: Regarding Browser/Client info implementation

2015-12-24 Thread Martin Grigorov
Hi, The change looks good. I see some minor improvements which we can make. Please create a ticket in JIRA! A PR will help to integrate it sooner! Thank you! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Dec 24, 2015 at 11:00 AM, Rakesh A

Re: Regarding Browser/Client info implementation

2015-12-24 Thread Tobias Soloschenko
Please create a PR so that code lines can be discussed with inline comments. Thanks! Merry Christmas :-) Am 24.12.15 um 11:00 schrieb Rakesh A: Can you go through this check-in https://github.com/iamrakesh/wicket/commit/351f084872467f0d3d0f339ab9c20afb4f79d2d1 Or do you need PR? Regards,

Re: Regarding Browser/Client info implementation

2015-12-24 Thread Rakesh A
Done - https://github.com/apache/wicket/pull/152 Mary Christmas :) Rakesh.A -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Regarding-Browser-Client-info-implementation-tp4673024p4673083.html Sent from the Users forum mailing list archive at Nabble.com.

Re: programmatic resources lookup

2015-12-24 Thread Garret Wilson
Sven (and Martin, who provided a similar but less complete answer), I'd rather not use ${} because in our properties files (for other parts of the application unrelated to Wicket) we use ${...} to refer to other string resources. The use of StringResourceModel as you provided almost solved my