Re: Locale issue with kendoui local date time picker

2017-03-31 Thread Maxim Solodovnik
I guess, maybe client side processing can be added?
i.e. value can be "normalized" before being accessible by wicket?

On Sat, Apr 1, 2017 at 11:14 AM, Maxim Solodovnik 
wrote:

> AM can also be:
> AM: "နံနက်"
> AM: "上午"
> AM: "PD"
> AM: "காலை"
> AM: "dop."
> 
>
> Is there any well known method to get value from JS.min file?
>
>
> On Sat, Apr 1, 2017 at 11:10 AM, Maxim Solodovnik 
> wrote:
>
>> BTW problem is wider :(
>> in wicket-kendo-ui-culture/src/main/resources/com/googlecode
>> /wicket/kendo/ui/resource/cultures
>> There are 25 files with "a.m." :(
>>
>> On Sat, Apr 1, 2017 at 10:08 AM, Maxim Solodovnik 
>> wrote:
>>
>>> Thanks for the investigation
>>> I'll try to implement something like this: http://stackoverflow.com
>>> /questions/13581608/displaying-am-and-pm-in-small-letter-aft
>>> er-date-formatting/42466448#42466448
>>> Will let you know :)
>>>
>>> On Sat, Apr 1, 2017 at 3:23 AM, Sebastien  wrote:
>>>
 (transferring to users@)

 Hi Maxim,

 The #setLabel issue is because DateTimePicker is a composition (of a
 DatePicker and a TimePicker), therefore you need to set it in #newDateTime
 and #newTimePicker.
 If I supply DateTimePicker#label to underlying datepicker and
 timepicker, it will be unique/same for both components, and it will
 override any value that may have been set by the user (in case he wish to
 have 2 different labels). Maybe I can issue a warning if the user calls
 #setLabel...

 The am/pm issue is more problematic. Kendo states that colombian am/pm
 marker is a.m. and p.m. The problem is that this marker (with dots) just
 does not exists in Java, AFAIK.
 For the widget to work, both pattern (java & kendo) should be
 compatible. That's the reason why the java pattern can be optionally
 supplied to DateTimer & TimePicker ctors. But in your that case it does not
 help, except if there is a way to have a custom am/pm based on a
 DateTimeFormatter (it will requires a change to be able to supply the
 formatter to the widget)

 Conclusion : you can try to implement a DateTimeFormatter for this
 am/pm case, and I will update the API if you succeed, or we consider we are
 reaching a limitation and you fallback colombian to default es (I will deny
 having said that colombian is like spanish, okay?)

 Best regards (to Colombian people :)),
 Sebastien

 On Fri, Mar 31, 2017 at 1:41 PM, Maxim Solodovnik >>> > wrote:

> Hello Sebastien,
>
> I'm still struggling with KendoUI LocalDateTime picker:
>
> Observations:
> Everything works as expecting if I'm NOT ading KendoCultureHeaderItem
>
> What is wrong:
> 1) Pre-selected time displayed as "11:00 PM", time in drop down is
> displayed as "11:00 p.m."
> 2) The method "setLabel" doesn't work :( (Label set is not being used
> while displaying errors)
>
> Steps:
> 1) clone https://github.com/solomax/ajax-download
> 2) mvn jetty:run
> 3) select any "Time" from dropdown
> 4) click Submit
>
> Maybe you can suggest what am I doing wrong?
> Thanks in advance!
>
>
> --
> WBR
> Maxim aka solomax
>


>>>
>>>
>>> --
>>> WBR
>>> Maxim aka solomax
>>>
>>
>>
>>
>> --
>> WBR
>> Maxim aka solomax
>>
>
>
>
> --
> WBR
> Maxim aka solomax
>



-- 
WBR
Maxim aka solomax


Re: Locale issue with kendoui local date time picker

2017-03-31 Thread Maxim Solodovnik
AM can also be:
AM: "နံနက်"
AM: "上午"
AM: "PD"
AM: "காலை"
AM: "dop."


Is there any well known method to get value from JS.min file?


On Sat, Apr 1, 2017 at 11:10 AM, Maxim Solodovnik 
wrote:

> BTW problem is wider :(
> in wicket-kendo-ui-culture/src/main/resources/com/
> googlecode/wicket/kendo/ui/resource/cultures
> There are 25 files with "a.m." :(
>
> On Sat, Apr 1, 2017 at 10:08 AM, Maxim Solodovnik 
> wrote:
>
>> Thanks for the investigation
>> I'll try to implement something like this: http://stackoverflow.com
>> /questions/13581608/displaying-am-and-pm-in-small-letter-
>> after-date-formatting/42466448#42466448
>> Will let you know :)
>>
>> On Sat, Apr 1, 2017 at 3:23 AM, Sebastien  wrote:
>>
>>> (transferring to users@)
>>>
>>> Hi Maxim,
>>>
>>> The #setLabel issue is because DateTimePicker is a composition (of a
>>> DatePicker and a TimePicker), therefore you need to set it in #newDateTime
>>> and #newTimePicker.
>>> If I supply DateTimePicker#label to underlying datepicker and
>>> timepicker, it will be unique/same for both components, and it will
>>> override any value that may have been set by the user (in case he wish to
>>> have 2 different labels). Maybe I can issue a warning if the user calls
>>> #setLabel...
>>>
>>> The am/pm issue is more problematic. Kendo states that colombian am/pm
>>> marker is a.m. and p.m. The problem is that this marker (with dots) just
>>> does not exists in Java, AFAIK.
>>> For the widget to work, both pattern (java & kendo) should be
>>> compatible. That's the reason why the java pattern can be optionally
>>> supplied to DateTimer & TimePicker ctors. But in your that case it does not
>>> help, except if there is a way to have a custom am/pm based on a
>>> DateTimeFormatter (it will requires a change to be able to supply the
>>> formatter to the widget)
>>>
>>> Conclusion : you can try to implement a DateTimeFormatter for this am/pm
>>> case, and I will update the API if you succeed, or we consider we are
>>> reaching a limitation and you fallback colombian to default es (I will deny
>>> having said that colombian is like spanish, okay?)
>>>
>>> Best regards (to Colombian people :)),
>>> Sebastien
>>>
>>> On Fri, Mar 31, 2017 at 1:41 PM, Maxim Solodovnik 
>>> wrote:
>>>
 Hello Sebastien,

 I'm still struggling with KendoUI LocalDateTime picker:

 Observations:
 Everything works as expecting if I'm NOT ading KendoCultureHeaderItem

 What is wrong:
 1) Pre-selected time displayed as "11:00 PM", time in drop down is
 displayed as "11:00 p.m."
 2) The method "setLabel" doesn't work :( (Label set is not being used
 while displaying errors)

 Steps:
 1) clone https://github.com/solomax/ajax-download
 2) mvn jetty:run
 3) select any "Time" from dropdown
 4) click Submit

 Maybe you can suggest what am I doing wrong?
 Thanks in advance!


 --
 WBR
 Maxim aka solomax

>>>
>>>
>>
>>
>> --
>> WBR
>> Maxim aka solomax
>>
>
>
>
> --
> WBR
> Maxim aka solomax
>



-- 
WBR
Maxim aka solomax


Re: Locale issue with kendoui local date time picker

2017-03-31 Thread Maxim Solodovnik
BTW problem is wider :(
in 
wicket-kendo-ui-culture/src/main/resources/com/googlecode/wicket/kendo/ui/resource/cultures
There are 25 files with "a.m." :(

On Sat, Apr 1, 2017 at 10:08 AM, Maxim Solodovnik 
wrote:

> Thanks for the investigation
> I'll try to implement something like this: http://stackoverflow.
> com/questions/13581608/displaying-am-and-pm-in-small-
> letter-after-date-formatting/42466448#42466448
> Will let you know :)
>
> On Sat, Apr 1, 2017 at 3:23 AM, Sebastien  wrote:
>
>> (transferring to users@)
>>
>> Hi Maxim,
>>
>> The #setLabel issue is because DateTimePicker is a composition (of a
>> DatePicker and a TimePicker), therefore you need to set it in #newDateTime
>> and #newTimePicker.
>> If I supply DateTimePicker#label to underlying datepicker and timepicker,
>> it will be unique/same for both components, and it will override any value
>> that may have been set by the user (in case he wish to have 2 different
>> labels). Maybe I can issue a warning if the user calls #setLabel...
>>
>> The am/pm issue is more problematic. Kendo states that colombian am/pm
>> marker is a.m. and p.m. The problem is that this marker (with dots) just
>> does not exists in Java, AFAIK.
>> For the widget to work, both pattern (java & kendo) should be compatible.
>> That's the reason why the java pattern can be optionally supplied to
>> DateTimer & TimePicker ctors. But in your that case it does not help,
>> except if there is a way to have a custom am/pm based on a
>> DateTimeFormatter (it will requires a change to be able to supply the
>> formatter to the widget)
>>
>> Conclusion : you can try to implement a DateTimeFormatter for this am/pm
>> case, and I will update the API if you succeed, or we consider we are
>> reaching a limitation and you fallback colombian to default es (I will deny
>> having said that colombian is like spanish, okay?)
>>
>> Best regards (to Colombian people :)),
>> Sebastien
>>
>> On Fri, Mar 31, 2017 at 1:41 PM, Maxim Solodovnik 
>> wrote:
>>
>>> Hello Sebastien,
>>>
>>> I'm still struggling with KendoUI LocalDateTime picker:
>>>
>>> Observations:
>>> Everything works as expecting if I'm NOT ading KendoCultureHeaderItem
>>>
>>> What is wrong:
>>> 1) Pre-selected time displayed as "11:00 PM", time in drop down is
>>> displayed as "11:00 p.m."
>>> 2) The method "setLabel" doesn't work :( (Label set is not being used
>>> while displaying errors)
>>>
>>> Steps:
>>> 1) clone https://github.com/solomax/ajax-download
>>> 2) mvn jetty:run
>>> 3) select any "Time" from dropdown
>>> 4) click Submit
>>>
>>> Maybe you can suggest what am I doing wrong?
>>> Thanks in advance!
>>>
>>>
>>> --
>>> WBR
>>> Maxim aka solomax
>>>
>>
>>
>
>
> --
> WBR
> Maxim aka solomax
>



-- 
WBR
Maxim aka solomax


Re: Locale issue with kendoui local date time picker

2017-03-31 Thread Maxim Solodovnik
Thanks for the investigation
I'll try to implement something like this:
http://stackoverflow.com/questions/13581608/displaying-am-and-pm-in-small-letter-after-date-formatting/42466448#42466448
Will let you know :)

On Sat, Apr 1, 2017 at 3:23 AM, Sebastien  wrote:

> (transferring to users@)
>
> Hi Maxim,
>
> The #setLabel issue is because DateTimePicker is a composition (of a
> DatePicker and a TimePicker), therefore you need to set it in #newDateTime
> and #newTimePicker.
> If I supply DateTimePicker#label to underlying datepicker and timepicker,
> it will be unique/same for both components, and it will override any value
> that may have been set by the user (in case he wish to have 2 different
> labels). Maybe I can issue a warning if the user calls #setLabel...
>
> The am/pm issue is more problematic. Kendo states that colombian am/pm
> marker is a.m. and p.m. The problem is that this marker (with dots) just
> does not exists in Java, AFAIK.
> For the widget to work, both pattern (java & kendo) should be compatible.
> That's the reason why the java pattern can be optionally supplied to
> DateTimer & TimePicker ctors. But in your that case it does not help,
> except if there is a way to have a custom am/pm based on a
> DateTimeFormatter (it will requires a change to be able to supply the
> formatter to the widget)
>
> Conclusion : you can try to implement a DateTimeFormatter for this am/pm
> case, and I will update the API if you succeed, or we consider we are
> reaching a limitation and you fallback colombian to default es (I will deny
> having said that colombian is like spanish, okay?)
>
> Best regards (to Colombian people :)),
> Sebastien
>
> On Fri, Mar 31, 2017 at 1:41 PM, Maxim Solodovnik 
> wrote:
>
>> Hello Sebastien,
>>
>> I'm still struggling with KendoUI LocalDateTime picker:
>>
>> Observations:
>> Everything works as expecting if I'm NOT ading KendoCultureHeaderItem
>>
>> What is wrong:
>> 1) Pre-selected time displayed as "11:00 PM", time in drop down is
>> displayed as "11:00 p.m."
>> 2) The method "setLabel" doesn't work :( (Label set is not being used
>> while displaying errors)
>>
>> Steps:
>> 1) clone https://github.com/solomax/ajax-download
>> 2) mvn jetty:run
>> 3) select any "Time" from dropdown
>> 4) click Submit
>>
>> Maybe you can suggest what am I doing wrong?
>> Thanks in advance!
>>
>>
>> --
>> WBR
>> Maxim aka solomax
>>
>
>


-- 
WBR
Maxim aka solomax


Re: [ANNOUNCE] Apache Wicket jQuery UI 8.0.0-M5 Released

2017-03-31 Thread Maxim Solodovnik
We are using wicketstuff charts in OpenMeetings, we need Apache compatible
license :)
I just checked it to know something new :)

Thanks for the great work :)

On Sat, Apr 1, 2017 at 1:42 AM, Sebastien  wrote:

> Hi Maxim,
>
> Not sure how I missed that but the fact is that dataviz.* files are not
> available on CDN for the new version.
> I opened an issue to telerik/progress:
> https://github.com/telerik/kendo-ui-core/issues/2995
>
> Hope they will fix it soon because I don't really want to downgrade or link
> to kendo.all.min.js in the demo site...
>
> Thanks again & best regards,
> Sebastien.
>
> On Fri, Mar 31, 2017 at 8:10 AM, Sebastien  wrote:
>
> > Damned! Thanks to let me know maxim!
> > I will look at this tonight !
> >
> >
> > On Mar 31, 2017 04:40, "Maxim Solodovnik"  wrote:
> >
> > Thanks a lot for the release Sebastien!
> > I just have checked Charts demos at http://www.7thweb.net/wicket-j
> > query-ui/kendo/chart/LineChartPage?6
> > All charts seems to be broken :(
> >
> >
>



-- 
WBR
Maxim aka solomax


Re: Locale issue with kendoui local date time picker

2017-03-31 Thread Sebastien
(transferring to users@)

Hi Maxim,

The #setLabel issue is because DateTimePicker is a composition (of a
DatePicker and a TimePicker), therefore you need to set it in #newDateTime
and #newTimePicker.
If I supply DateTimePicker#label to underlying datepicker and timepicker,
it will be unique/same for both components, and it will override any value
that may have been set by the user (in case he wish to have 2 different
labels). Maybe I can issue a warning if the user calls #setLabel...

The am/pm issue is more problematic. Kendo states that colombian am/pm
marker is a.m. and p.m. The problem is that this marker (with dots) just
does not exists in Java, AFAIK.
For the widget to work, both pattern (java & kendo) should be compatible.
That's the reason why the java pattern can be optionally supplied to
DateTimer & TimePicker ctors. But in your that case it does not help,
except if there is a way to have a custom am/pm based on a
DateTimeFormatter (it will requires a change to be able to supply the
formatter to the widget)

Conclusion : you can try to implement a DateTimeFormatter for this am/pm
case, and I will update the API if you succeed, or we consider we are
reaching a limitation and you fallback colombian to default es (I will deny
having said that colombian is like spanish, okay?)

Best regards (to Colombian people :)),
Sebastien

On Fri, Mar 31, 2017 at 1:41 PM, Maxim Solodovnik 
wrote:

> Hello Sebastien,
>
> I'm still struggling with KendoUI LocalDateTime picker:
>
> Observations:
> Everything works as expecting if I'm NOT ading KendoCultureHeaderItem
>
> What is wrong:
> 1) Pre-selected time displayed as "11:00 PM", time in drop down is
> displayed as "11:00 p.m."
> 2) The method "setLabel" doesn't work :( (Label set is not being used
> while displaying errors)
>
> Steps:
> 1) clone https://github.com/solomax/ajax-download
> 2) mvn jetty:run
> 3) select any "Time" from dropdown
> 4) click Submit
>
> Maybe you can suggest what am I doing wrong?
> Thanks in advance!
>
>
> --
> WBR
> Maxim aka solomax
>


Re: [ANNOUNCE] Apache Wicket jQuery UI 8.0.0-M5 Released

2017-03-31 Thread Sebastien
Hi Maxim,

Not sure how I missed that but the fact is that dataviz.* files are not
available on CDN for the new version.
I opened an issue to telerik/progress:
https://github.com/telerik/kendo-ui-core/issues/2995

Hope they will fix it soon because I don't really want to downgrade or link
to kendo.all.min.js in the demo site...

Thanks again & best regards,
Sebastien.

On Fri, Mar 31, 2017 at 8:10 AM, Sebastien  wrote:

> Damned! Thanks to let me know maxim!
> I will look at this tonight !
>
>
> On Mar 31, 2017 04:40, "Maxim Solodovnik"  wrote:
>
> Thanks a lot for the release Sebastien!
> I just have checked Charts demos at http://www.7thweb.net/wicket-j
> query-ui/kendo/chart/LineChartPage?6
> All charts seems to be broken :(
>
>


How to add some data to ajax and websocket response?

2017-03-31 Thread Daniel Stoch
Hi,

I am trying to solve WICKET-5588. I want to add some ordering
information (key-value) to responses for ajax and websocket. This
information then will be read on client side (JS) to handle proper
processing order of responses. But I cannot find a good entry point to
add such generic information (order information should be calculated
in context of page/component).
How to add such information to response in Wicket 6.x?

--
Best regards,
Daniel

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org