Re: Wicket-jquery-ui autocomplete running slow

2019-03-11 Thread Martin Grigorov
On Mon, Mar 11, 2019 at 1:57 PM Entropy  wrote:

> The problem is our project is a government one that doesn't let us use
> Maven
> (we've tilted at that windmill multiple times).  So quick starts aren't
> that
> quick for us.
>

We do not ask you to use your project to create the mini project.
Just start from scratch and add the functionality that shows the problem.
Often while doing this the reporter finds the problem him/herself.


>
> --
> Sent from:
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: Wicket-jquery-ui autocomplete running slow

2019-03-11 Thread Entropy
The problem is our project is a government one that doesn't let us use Maven
(we've tilted at that windmill multiple times).  So quick starts aren't that
quick for us.

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

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



Re: Wicket-jquery-ui autocomplete running slow

2019-03-10 Thread Maxim Solodovnik
Can you share quick-start project demonstrating this issue?

On Mon, 11 Mar 2019 at 02:44, Entropy  wrote:
>
> Identical to the timing of getchoices (the method that contains it).  In my
> most recent test 24ms for both while the full request took 6.5 seconds.
>
> --
> Sent from: 
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>


-- 
WBR
Maxim aka solomax

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



Re: Wicket-jquery-ui autocomplete running slow

2019-03-10 Thread Entropy
Identical to the timing of getchoices (the method that contains it).  In my
most recent test 24ms for both while the full request took 6.5 seconds.

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

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



Re: Wicket-jquery-ui autocomplete running slow

2019-03-10 Thread Entropy
The browser's network tab reflects pretty closely the number I see in the
filter.  In my most recent attempt, this was about 6.5 seconds.  Meanwhile
in the same request, the getchoices took 24 milliseconds.

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

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



Re: Wicket-jquery-ui autocomplete running slow

2019-03-08 Thread Maxim Solodovnik
Additional question: What is the timing of `getFilterList` method?

On Sat, 9 Mar 2019 at 08:17, Sebastien  wrote:
>
> Hi, in your browser devtool / network, that the timing says while calling
> getchoice ?
>
> On Sat, Mar 9, 2019, 06:59 Entropy  wrote:
>
> > My project is using the wicket-jquery-ui AutoCompleteTextField.  We're
> > returning a list that was prefetched and all we do in the getChoices is
> > create a sublist.  the entire getChoices runs in milliseconds...usually
> > 20-30, which I know because I put a rudimentary timer in it.  Yet, the
> > autocomplete feels very sluggish as we're testing it.  So I put a timer in
> > a
> > filter that wraps our wicket calls and timed that.  The filter timer shows
> > the entire event is running 2-4 seconds.
> >
> > 2-4 seconds per keystroke when the fattest part of the call, the data
> > retrieval, is only taking 20-30ms seems like something is wrong.  The
> > list's
> > max size is being limited to 100 rows, but even when I pared it down to 10
> > rows the improvement was only marginal.
> >
> > I pasted the code below, but that mostly just shows the getChoices() which,
> > as I said above, is just filtering over a list in memory.  Any ideas?
> >
> > AutoCompleteTextField fld = new
> > AutoCompleteTextField(fldId)
> > {
> > protected List getChoices(String input) {
> > long start = System.currentTimeMillis();
> > if (minInputLen > 0) {
> > if (input == null ||
> > input.trim().length() < minInputLen) {
> > return
> > Collections.EMPTY_LIST;  // empty list
> > }
> > }
> >
> > List curMatchingList =
> > getFilterList(valList, input,
> > maxFilterListSize); // filters the in memory list valList by the input
> >
> > if (curMatchingList == null) {
> > curMatchingList = new
> > ArrayList();
> > }
> >
> > if (curMatchingList.size() == 0) {
> > if (noResultsVal != null) {
> >
> > curMatchingList.add(noResultsVal);  // no-results option
> > }
> > }
> > System.out.println("GETCHOICES: " +
> > (System.currentTimeMillis() -
> > start));
> > return curMatchingList; // data list
> > }
> > };
> >
> > --
> > Sent from:
> > http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >



-- 
WBR
Maxim aka solomax

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



Re: Wicket-jquery-ui autocomplete running slow

2019-03-08 Thread Sebastien
Hi, in your browser devtool / network, that the timing says while calling
getchoice ?

On Sat, Mar 9, 2019, 06:59 Entropy  wrote:

> My project is using the wicket-jquery-ui AutoCompleteTextField.  We're
> returning a list that was prefetched and all we do in the getChoices is
> create a sublist.  the entire getChoices runs in milliseconds...usually
> 20-30, which I know because I put a rudimentary timer in it.  Yet, the
> autocomplete feels very sluggish as we're testing it.  So I put a timer in
> a
> filter that wraps our wicket calls and timed that.  The filter timer shows
> the entire event is running 2-4 seconds.
>
> 2-4 seconds per keystroke when the fattest part of the call, the data
> retrieval, is only taking 20-30ms seems like something is wrong.  The
> list's
> max size is being limited to 100 rows, but even when I pared it down to 10
> rows the improvement was only marginal.
>
> I pasted the code below, but that mostly just shows the getChoices() which,
> as I said above, is just filtering over a list in memory.  Any ideas?
>
> AutoCompleteTextField fld = new
> AutoCompleteTextField(fldId)
> {
> protected List getChoices(String input) {
> long start = System.currentTimeMillis();
> if (minInputLen > 0) {
> if (input == null ||
> input.trim().length() < minInputLen) {
> return
> Collections.EMPTY_LIST;  // empty list
> }
> }
>
> List curMatchingList =
> getFilterList(valList, input,
> maxFilterListSize); // filters the in memory list valList by the input
>
> if (curMatchingList == null) {
> curMatchingList = new
> ArrayList();
> }
>
> if (curMatchingList.size() == 0) {
> if (noResultsVal != null) {
>
> curMatchingList.add(noResultsVal);  // no-results option
> }
> }
> System.out.println("GETCHOICES: " +
> (System.currentTimeMillis() -
> start));
> return curMatchingList; // data list
> }
> };
>
> --
> Sent from:
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Wicket-jquery-ui autocomplete running slow

2019-03-08 Thread Entropy
My project is using the wicket-jquery-ui AutoCompleteTextField.  We're
returning a list that was prefetched and all we do in the getChoices is
create a sublist.  the entire getChoices runs in milliseconds...usually
20-30, which I know because I put a rudimentary timer in it.  Yet, the
autocomplete feels very sluggish as we're testing it.  So I put a timer in a
filter that wraps our wicket calls and timed that.  The filter timer shows
the entire event is running 2-4 seconds.

2-4 seconds per keystroke when the fattest part of the call, the data
retrieval, is only taking 20-30ms seems like something is wrong.  The list's
max size is being limited to 100 rows, but even when I pared it down to 10
rows the improvement was only marginal.

I pasted the code below, but that mostly just shows the getChoices() which,
as I said above, is just filtering over a list in memory.  Any ideas?

AutoCompleteTextField fld = new
AutoCompleteTextField(fldId)
{
protected List getChoices(String input) {
long start = System.currentTimeMillis();
if (minInputLen > 0) {
if (input == null || 
input.trim().length() < minInputLen) {
return Collections.EMPTY_LIST;  
// empty list
}
}

List curMatchingList = 
getFilterList(valList, input,
maxFilterListSize); // filters the in memory list valList by the input

if (curMatchingList == null) {
curMatchingList = new 
ArrayList();
}

if (curMatchingList.size() == 0) {
if (noResultsVal != null) {

curMatchingList.add(noResultsVal);  // no-results option
}
}
System.out.println("GETCHOICES: " + 
(System.currentTimeMillis() -
start));
return curMatchingList; // data list
}
};

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

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



Re: Wicket-jquery-ui question

2019-02-18 Thread Sebastien Briquet
Hi,

If the dialog is instantiated in a lazy loading panel, maybe the issue
could be something like:
http://blog.nemikor.com/2009/04/08/basic-usage-of-the-jquery-ui-dialog/

But this kind of behavior is normally fixed in wickte-jquery-ui. But my
guess is that it's somehow related to the event binding...

Please have a look at the generated javascript in your page and try to
isolate the defect...

Thanks,
Sebastien


Re: Wicket-jquery-ui question

2019-02-17 Thread Entropy
The problem is that my project isn't allowed to use Maven (long story with
many arguments).  As i understand it, the quickstarts require Maven.

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

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



Re: Wicket-jquery-ui question

2019-02-15 Thread Maxim Solodovnik
Hello,

Can you share simple quickstart demonstrating the problem?

On Fri, 15 Feb 2019 at 23:18, Entropy  wrote:
>
> We recently added wicket-jquery-ui MessageDialog
> (http://www.7thweb.net/wicket-jquery-ui/dialog/MessageDialogPage;jsessionid=666ECDD526710BAC40AC4EBBFCC7F4F1?0)
> to our app.  But the demo renders the buttons like so:
>
> button class="ui-button ui-corner-all ui-widget" id="btn04"
> type="button"
>
> But when we use it in our app, there is no class set.  Also, the demo starts
> with the focus on the Ok button.  In ours, the user has to initiate an extra
> tab before the focus is on the button.
>
> The demo code doesn't seem to be adding it explicitly, and our use of it
> seems pretty mundane.
>
> msgDialog = new MessageDialog("exitConfirmDirty", "Unsaved 
> Changes",
> DIRTY_MESSAGE, DialogButtons.YES_NO, DialogIcon.WARN) {
>
> private static final long 
> serialVersionUID = 1L;
>
> @Override
> protected Component newLabel(String 
> id, IModel model) {
> return super.newLabel(id, new 
> Model(currentMessage));
> }
>
> @Override
> public void onClose(AjaxRequestTarget 
> target, DialogButton
> buttonPressed) {
> if 
> (buttonPressed.getName().equalsIgnoreCase("Yes")) {
> doAction(target);
> }
> }
> };
>
> And the button event that opens the dialog looks like:
>
> this.msgDialog.open(target);
>
> Anyone have any idea why i am getting different behavior than the demo?
>
> --
> Sent from: 
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>


-- 
WBR
Maxim aka solomax

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



Wicket-jquery-ui question

2019-02-15 Thread Entropy
We recently added wicket-jquery-ui MessageDialog
(http://www.7thweb.net/wicket-jquery-ui/dialog/MessageDialogPage;jsessionid=666ECDD526710BAC40AC4EBBFCC7F4F1?0)
to our app.  But the demo renders the buttons like so:

button class="ui-button ui-corner-all ui-widget" id="btn04"
type="button"

But when we use it in our app, there is no class set.  Also, the demo starts
with the focus on the Ok button.  In ours, the user has to initiate an extra
tab before the focus is on the button.  

The demo code doesn't seem to be adding it explicitly, and our use of it
seems pretty mundane.

msgDialog = new MessageDialog("exitConfirmDirty", "Unsaved 
Changes",
DIRTY_MESSAGE, DialogButtons.YES_NO, DialogIcon.WARN) {

private static final long 
serialVersionUID = 1L;

@Override
protected Component newLabel(String id, 
IModel model) {
return super.newLabel(id, new 
Model(currentMessage));
}

@Override
public void onClose(AjaxRequestTarget 
target, DialogButton
buttonPressed) {
if 
(buttonPressed.getName().equalsIgnoreCase("Yes")) {
doAction(target);
}
}
};

And the button event that opens the dialog looks like:

this.msgDialog.open(target);

Anyone have any idea why i am getting different behavior than the demo?

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

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



Re: [ANNOUNCE] CVE-2018-1325 - Wicket jQuery UI: XSS while displaying value in WYSIWYG editor

2018-04-20 Thread Maxim Solodovnik
Cve db also updated :)

WBR, Maxim
(from mobile, sorry for the typos)

On Fri, Apr 20, 2018, 19:22 Sebastien Briquet <sbriq...@apache.org> wrote:

> FYI.
>
> Thanks Maxim! :)
>
> -- Forwarded message --
> From: Maxim Solodovnik <solomax...@gmail.com>
> Date: Wed, Apr 18, 2018 at 6:39 PM
> Subject: [ANNOUNCE] CVE-2018-1325 - Wicket jQuery UI: XSS while displaying
> value in WYSIWYG editor
> To: Openmeetings user-list <u...@openmeetings.apache.org>, dev <
> d...@openmeetings.apache.org>, user-russ...@openmeetings.apache.org
>
>
> CVE-2018-1325 - Wicket jQuery UI: XSS while displaying value in WYSIWYG
> editor
>
> Severity: High
>
> Vendor: wicket-jquery-ui
>
> Versions Affected: <= 6.29.0, <= 7.10.1, <= 8.0.0-M9.1
>
> Description: JS code created in WYSIWYG editor will be executed on display
> CVE-2018-1325
>
> The issue was fixed in 6.29.1, 7.10.2, 8.0.0-M9.2
> All users are recommended to upgrade to Apache OpenMeetings 4.0.3
>
> Credit: This issue was identified by Kamil Sevi
>
>
> --
> WBR
> Maxim aka solomax
>


Fwd: [ANNOUNCE] CVE-2018-1325 - Wicket jQuery UI: XSS while displaying value in WYSIWYG editor

2018-04-20 Thread Sebastien Briquet
FYI.

Thanks Maxim! :)

-- Forwarded message --
From: Maxim Solodovnik <solomax...@gmail.com>
Date: Wed, Apr 18, 2018 at 6:39 PM
Subject: [ANNOUNCE] CVE-2018-1325 - Wicket jQuery UI: XSS while displaying
value in WYSIWYG editor
To: Openmeetings user-list <u...@openmeetings.apache.org>, dev <
d...@openmeetings.apache.org>, user-russ...@openmeetings.apache.org


CVE-2018-1325 - Wicket jQuery UI: XSS while displaying value in WYSIWYG
editor

Severity: High

Vendor: wicket-jquery-ui

Versions Affected: <= 6.29.0, <= 7.10.1, <= 8.0.0-M9.1

Description: JS code created in WYSIWYG editor will be executed on display
CVE-2018-1325

The issue was fixed in 6.29.1, 7.10.2, 8.0.0-M9.2
All users are recommended to upgrade to Apache OpenMeetings 4.0.3

Credit: This issue was identified by Kamil Sevi


-- 
WBR
Maxim aka solomax


[ANNOUNCE] CVE-2017-15719 - Wicket jQuery UI: XSS in WYSIWYG Editor

2018-02-25 Thread Sebastien Briquet
CVE-2017-15719 - Wicket jQuery UI: XSS in WYSIWYG editor

Severity: High
Versions Affected: <= 6.28.0, <= 7.9.1, <= 8.0.0-M8

Artifacts Affected:

   - wicket-jquery-ui-plugins (
   com.googlecode.wicket.jquery.ui.plugins.wysiwyg.WysiwygEditor)
   - wicket-kendo-ui (com.googlecode.wicket.kendo.ui.widget.editor.Editor)

Description: A security issue as been discovered in the WYSIWYG Editor that
allows an attacker to submit arbitrary JS code to WYSIWYG editor.

All users are recommended to upgrade to the latest version (6.29.0, 7.10.1,
8.0.0-M9.1)
The issue was fixed in 6.28.1, 7.9.2, 8.0.0-M8.1

Credit: The issue has been identified in Apache OpenMeeting by Sahil Dhar
(Security Innovation Inc)

References:
https://github.com/sebfz1/wicket-jquery-ui/wiki#cve-2017-15719---xss-in-wysiwyg-editor


[ANNOUNCE] Wicket jQuery UI 8.0.0-M9.1 released

2018-02-23 Thread Sebastien Briquet
Dear Wicket jQuery/Kendo UI users,

Due to a bug discovered yesterday that affects several Kendo UI components
on latest release (7.10.0 & 8.0.0-M9), I had to roll out a patch release :
8.0.0-M9.1 which is now available at maven central.

Thanks & best regards,
Sebastien.


On Mon, Feb 19, 2018 at 8:32 PM, Sebastien Briquet <sbriq...@apache.org>
wrote:

> Dear Wicket jQuery/Kendo UI users,
>
> Wicket jQuery UI 8.0.0-M9 based on Apache Wicket 8.0.0-M9 is now released!
>
> Changelog:
> https://github.com/sebfz1/wicket-jquery-ui/releases/tag/
> wicket-jquery-ui-8.0.0-M9
>
> API BREAKS:
> - Kendo UI: API BREAK Editor model object is now String type (no more
> generic T)
> - Kendo UI: API BREAK DataProviderBehavior#newJsonRow(T bean) now returns
> a JSONObject
>
> Maven dependencies:
>
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-jquery-ui
> 8.0.0-M9
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-jquery-ui-theme-base
> 8.0.0-M9
> 
>
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-kendo-ui
> 8.0.0-M9
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-kendo-ui-theme-default
>     8.0.0-M9
> 
>
> Questions / Issues:
>
> If you have any *question*, feel free to ask in the forum:
> http://groups.google.com/group/wicket-jquery-ui/
>
> If you notice an *issue*, please report it here:
> https://github.com/sebfz1/wicket-jquery-ui/issues
>
> Enjoy! :)
> Sebastien
>


[ANNOUNCE] Wicket jQuery UI 6.29.0 released

2018-02-23 Thread Sebastien Briquet
Dear Wicket jQuery/Kendo UI users,

Wicket jQuery UI 6.29.0 based on Apache Wicket 6.29.0 is now released!

Changelog (same as 8.0.0-M9):
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/
wicket-jquery-ui-8.0.0-M9

API BREAKS:
- Kendo UI: API BREAK Editor model object is now String type (no more
generic T)
- Kendo UI: API BREAK DataProviderBehavior#newJsonRow(T bean) now returns a
JSONObject

Maven dependencies:




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
6.29.0



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
6.29.0





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
6.29.0



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
6.29.0


Questions / Issues:

If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien


[ANNOUNCE] Wicket jQuery UI 7.10.1 released

2018-02-23 Thread Sebastien Briquet
Dear Wicket jQuery/Kendo UI users,

Due to a bug discovered yesterday that affects several Kendo UI components
on latest release (7.10.0 & 8.0.0-M9), I had to roll out a patch release :
7.10.1 which is now available at maven central.

Thanks & best regards,
Sebastien.

On Tue, Feb 20, 2018 at 12:27 AM, Sebastien Briquet <sbriq...@apache.org>
wrote:

> Dear Wicket jQuery/Kendo UI users,
>
> Wicket jQuery UI 7.10.0 based on Apache Wicket 7.10.0 is now released!
>
> Changelog (same as 8.0.0-M9):
> https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wick
> et-jquery-ui-8.0.0-M9
>
> API BREAKS:
> - Kendo UI: API BREAK Editor model object is now String type (no more
> generic T)
> - Kendo UI: API BREAK DataProviderBehavior#newJsonRow(T bean) now returns
> a JSONObject
>
> Maven dependencies:
>
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-jquery-ui
> 7.10.0
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-jquery-ui-theme-base
> 7.10.0
> 
>
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-kendo-ui
> 7.10.0
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-kendo-ui-theme-default
>     7.10.0
> 
>
> Questions / Issues:
>
> If you have any *question*, feel free to ask in the forum:
> http://groups.google.com/group/wicket-jquery-ui/
>
> If you notice an *issue*, please report it here:
> https://github.com/sebfz1/wicket-jquery-ui/issues
>
> Enjoy! :)
> Sebastien
>


[ANNOUNCE] Wicket jQuery UI 7.10.0 released

2018-02-19 Thread Sebastien Briquet
Dear Wicket jQuery/Kendo UI users,

Wicket jQuery UI 7.10.0 based on Apache Wicket 7.10.0 is now released!

Changelog (same as 8.0.0-M9):
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-8.0.0-M9

API BREAKS:
- Kendo UI: API BREAK Editor model object is now String type (no more
generic T)
- Kendo UI: API BREAK DataProviderBehavior#newJsonRow(T bean) now returns a
JSONObject

Maven dependencies:




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
7.10.0



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
7.10.0





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
7.10.0



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
7.10.0


Questions / Issues:

If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien


[ANNOUNCE] Wicket jQuery UI 8.0.0-M9 released

2018-02-19 Thread Sebastien Briquet
Dear Wicket jQuery/Kendo UI users,

Wicket jQuery UI 8.0.0-M9 based on Apache Wicket 8.0.0-M9 is now released!

Changelog:
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-8.0.0-M9

API BREAKS:
- Kendo UI: API BREAK Editor model object is now String type (no more
generic T)
- Kendo UI: API BREAK DataProviderBehavior#newJsonRow(T bean) now returns a
JSONObject

Maven dependencies:




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
8.0.0-M9



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
8.0.0-M9





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
8.0.0-M9



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
8.0.0-M9


Questions / Issues:

If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien


[ANNOUNCE] Wicket jQuery UI 8.0.0-M8 released

2017-11-02 Thread Sebastien
Dear Wicket jQuery/Kendo UI users,

Wicket jQuery UI 8.0.0-M8 based on Apache Wicket 8.0.0-M8 is now released!

Changelog:
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-8.0.0-M8

Maven dependencies:




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
8.0.0-M8



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
8.0.0-M8





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
8.0.0-M8



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
8.0.0-M8


Questions / Issues:

If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien


[ANNOUNCE] Wicket jQuery UI 6.28.0 Released

2017-10-07 Thread Sebastien
Dear Wicket jQuery/Kendo UI users,

Wicket jQuery UI 6.28.0 based on Apache Wicket 6.28.0 is now released!

Changelog (same as 7.9.0) :

https://github.com/sebfz1/wicket-jquery-ui/releases/tag/
wicket-jquery-ui-7.9.0

Maven dependencies:




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
6.28.0



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
6.28.0





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
6.28.0



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
6.28.0


Questions / Issues:

If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien


[ANNOUNCE] Wicket jQuery UI 7.9.0 Released

2017-09-24 Thread Sebastien
Dear Wicket jQuery/Kendo UI users,

Wicket jQuery UI 7.9.0 based on Apache Wicket 7.9.0 is now released!

Changelog:

https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-7.9.0

Maven dependencies:




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
7.9.0



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
7.9.0





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
7.9.0



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
7.9.0


Questions / Issues:

If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)


Wicket jQuery UI 8.0.0-M7 Released

2017-08-12 Thread Sebastien
Dear Wicket jQuery UI users,

Wicket jQuery UI 8.0.0-M7 based on Apache Wicket 8.0.0-M7 is now released!

*Changelog:*

The changelog is the same for 6.27.0, 7.8.0 & 8.0.0-M7.
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-8.0.0-M7
<https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-8.0.0-M6>

*Maven dependencies:*




com.googlecode.wicket-jquery-ui
    wicket-jquery-ui
8.0.0-M7



com.googlecode.wicket-jquery-ui
    wicket-jquery-ui-theme-base
8.0.0-M7





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
8.0.0-M7



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
8.0.0-M7



*Questions / Issues:*
If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien


Re: wicket-jquery-ui menu item with client handler

2017-07-27 Thread Maxim Solodovnik
Hello Sebastien,

Just was able to check it
It works, unfortunately I was unable to abopt it for my needs ... :(
What I need is
1) some menu items should work via server round-trip
2) couple of menu items should be client-side only
I tried to "return true/false" from handler but it doesn't work

So the whole menu can be client-side or server-side :(

On Wed, Jul 12, 2017 at 6:21 PM, Sebastien  wrote:

> Hi Maxim,
>
> 8.0.0-SNAPSHOT is deploying; you should now be able to supply your own
> callback as follow:
>
> @Override
> public void onConfigure(JQueryBehavior behavior)
> {
> behavior.setOption("select", "function(...) { ... }");
> }
>
> Please refer to jQuery UI or Kendo UI doc for usage/arguments. Please also
> note that an ajax behavior is still bound to the component (but not used),
> that's ok if you have only one menu. But if you have dozen, you may
> consider having your own menu implementation...
>
> Thanks & best regards,
> Sebastien.
>
>


-- 
WBR
Maxim aka solomax


Re: wicket-jquery-ui menu item with client handler

2017-07-12 Thread Sebastien
Hi Maxim,

8.0.0-SNAPSHOT is deploying; you should now be able to supply your own
callback as follow:

@Override
public void onConfigure(JQueryBehavior behavior)
{
behavior.setOption("select", "function(...) { ... }");
}

Please refer to jQuery UI or Kendo UI doc for usage/arguments. Please also
note that an ajax behavior is still bound to the component (but not used),
that's ok if you have only one menu. But if you have dozen, you may
consider having your own menu implementation...

Thanks & best regards,
Sebastien.


Re: wicket-jquery-ui menu item with client handler

2017-07-12 Thread Sebastien
Hi Maxim,

A simple solution would be to specify your own "select" callback but you
can't do it right now because the API is not designed to let you do that! ;)
I will change this asap...

Thanks & best regards,
Sebastien.


On Wed, Jul 12, 2017 at 2:39 AM, Maxim Solodovnik <solomax...@gmail.com>
wrote:

> Thanks a lot for clarifications
> Finally I was able to find onSelect method :)
>
> What I need is "client only" menu item (with no round trip to server)
> Currently I'm achieving this as follows:
> new MenuItem() {
> @Override
> public void onClick(AjaxRequestTarget target) {
> target.appendJavaScript("alert('test');");
> }
> }
>
>
>
> On Wed, Jul 12, 2017 at 12:38 AM, Sebastien <seb...@gmail.com> wrote:
>
>> Hi Maxim,
>>
>> MenuItem is a pojo, not a component/widget. You can use the
>> Menu#getItemList (jquery-ui) or Menu#getMenuItemsMap (kendo-ui) to add
>> menu-items and then reload the widget with the ART.
>> But I did not understood what you want/need to listen, there is no lazy
>> load (in ajax) for instance. The only available ajax-behavior is "onselect"
>> which triggers both menuItem#onClick(ART) and menu#onclick(ART, menuitem)
>>
>> I don't know if it helps, otherwise please give me more detail about your
>> use-case...
>>
>> Thanks & best regards :)
>> Sebastien
>>
>>
>> On Tue, Jul 11, 2017 at 5:04 PM, Maxim Solodovnik <solomax...@gmail.com>
>> wrote:
>>
>>> Hello Sebastien,
>>>
>>> I'm trying to add MenuItem to wicket-jquery-ui menu with client only JS
>>> handler
>>> As I understand I need to add AjaxCallListener to MenuItem but it
>>> seems I'm unable to find the correct place for it :(
>>> Maybe you can help?
>>>
>>> --
>>> WBR
>>> Maxim aka solomax
>>>
>>
>>
>
>
> --
> WBR
> Maxim aka solomax
>


Re: wicket-jquery-ui menu item with client handler

2017-07-12 Thread Maxim Solodovnik
Thanks a lot!

On Wed, Jul 12, 2017 at 3:10 PM, Sebastien <seb...@gmail.com> wrote:

> Hi Maxim,
>
> A simple solution would be to specify your own "select" callback but you
> can't do it right now because the API is not designed to let you do that! ;)
> I will change this asap...
>
> Thanks & best regards,
> Sebastien.
>
>
> On Wed, Jul 12, 2017 at 2:39 AM, Maxim Solodovnik <solomax...@gmail.com>
> wrote:
>
>> Thanks a lot for clarifications
>> Finally I was able to find onSelect method :)
>>
>> What I need is "client only" menu item (with no round trip to server)
>> Currently I'm achieving this as follows:
>> new MenuItem() {
>> @Override
>> public void onClick(AjaxRequestTarget target) {
>> target.appendJavaScript("alert('test');");
>> }
>> }
>>
>>
>>
>> On Wed, Jul 12, 2017 at 12:38 AM, Sebastien <seb...@gmail.com> wrote:
>>
>>> Hi Maxim,
>>>
>>> MenuItem is a pojo, not a component/widget. You can use the
>>> Menu#getItemList (jquery-ui) or Menu#getMenuItemsMap (kendo-ui) to add
>>> menu-items and then reload the widget with the ART.
>>> But I did not understood what you want/need to listen, there is no lazy
>>> load (in ajax) for instance. The only available ajax-behavior is "onselect"
>>> which triggers both menuItem#onClick(ART) and menu#onclick(ART, menuitem)
>>>
>>> I don't know if it helps, otherwise please give me more detail about
>>> your use-case...
>>>
>>> Thanks & best regards :)
>>> Sebastien
>>>
>>>
>>> On Tue, Jul 11, 2017 at 5:04 PM, Maxim Solodovnik <solomax...@gmail.com>
>>> wrote:
>>>
>>>> Hello Sebastien,
>>>>
>>>> I'm trying to add MenuItem to wicket-jquery-ui menu with client only JS
>>>> handler
>>>> As I understand I need to add AjaxCallListener to MenuItem but it
>>>> seems I'm unable to find the correct place for it :(
>>>> Maybe you can help?
>>>>
>>>> --
>>>> WBR
>>>> Maxim aka solomax
>>>>
>>>
>>>
>>
>>
>> --
>> WBR
>> Maxim aka solomax
>>
>
>


-- 
WBR
Maxim aka solomax


Re: wicket-jquery-ui menu item with client handler

2017-07-12 Thread Maxim Solodovnik
Maybe little example can be added to 7thweb :)))

On Wed, Jul 12, 2017 at 3:16 PM, Maxim Solodovnik <solomax...@gmail.com>
wrote:

> Thanks a lot!
>
> On Wed, Jul 12, 2017 at 3:10 PM, Sebastien <seb...@gmail.com> wrote:
>
>> Hi Maxim,
>>
>> A simple solution would be to specify your own "select" callback but you
>> can't do it right now because the API is not designed to let you do that! ;)
>> I will change this asap...
>>
>> Thanks & best regards,
>> Sebastien.
>>
>>
>> On Wed, Jul 12, 2017 at 2:39 AM, Maxim Solodovnik <solomax...@gmail.com>
>> wrote:
>>
>>> Thanks a lot for clarifications
>>> Finally I was able to find onSelect method :)
>>>
>>> What I need is "client only" menu item (with no round trip to server)
>>> Currently I'm achieving this as follows:
>>> new MenuItem() {
>>> @Override
>>> public void onClick(AjaxRequestTarget target) {
>>> target.appendJavaScript("alert('test');");
>>> }
>>> }
>>>
>>>
>>>
>>> On Wed, Jul 12, 2017 at 12:38 AM, Sebastien <seb...@gmail.com> wrote:
>>>
>>>> Hi Maxim,
>>>>
>>>> MenuItem is a pojo, not a component/widget. You can use the
>>>> Menu#getItemList (jquery-ui) or Menu#getMenuItemsMap (kendo-ui) to add
>>>> menu-items and then reload the widget with the ART.
>>>> But I did not understood what you want/need to listen, there is no lazy
>>>> load (in ajax) for instance. The only available ajax-behavior is "onselect"
>>>> which triggers both menuItem#onClick(ART) and menu#onclick(ART, menuitem)
>>>>
>>>> I don't know if it helps, otherwise please give me more detail about
>>>> your use-case...
>>>>
>>>> Thanks & best regards :)
>>>> Sebastien
>>>>
>>>>
>>>> On Tue, Jul 11, 2017 at 5:04 PM, Maxim Solodovnik <solomax...@gmail.com
>>>> > wrote:
>>>>
>>>>> Hello Sebastien,
>>>>>
>>>>> I'm trying to add MenuItem to wicket-jquery-ui menu with client only
>>>>> JS handler
>>>>> As I understand I need to add AjaxCallListener to MenuItem but it
>>>>> seems I'm unable to find the correct place for it :(
>>>>> Maybe you can help?
>>>>>
>>>>> --
>>>>> WBR
>>>>> Maxim aka solomax
>>>>>
>>>>
>>>>
>>>
>>>
>>> --
>>> WBR
>>> Maxim aka solomax
>>>
>>
>>
>
>
> --
> WBR
> Maxim aka solomax
>



-- 
WBR
Maxim aka solomax


Re: wicket-jquery-ui menu item with client handler

2017-07-11 Thread Maxim Solodovnik
Thanks a lot for clarifications
Finally I was able to find onSelect method :)

What I need is "client only" menu item (with no round trip to server)
Currently I'm achieving this as follows:
new MenuItem() {
@Override
public void onClick(AjaxRequestTarget target) {
target.appendJavaScript("alert('test');");
}
}



On Wed, Jul 12, 2017 at 12:38 AM, Sebastien <seb...@gmail.com> wrote:

> Hi Maxim,
>
> MenuItem is a pojo, not a component/widget. You can use the
> Menu#getItemList (jquery-ui) or Menu#getMenuItemsMap (kendo-ui) to add
> menu-items and then reload the widget with the ART.
> But I did not understood what you want/need to listen, there is no lazy
> load (in ajax) for instance. The only available ajax-behavior is "onselect"
> which triggers both menuItem#onClick(ART) and menu#onclick(ART, menuitem)
>
> I don't know if it helps, otherwise please give me more detail about your
> use-case...
>
> Thanks & best regards :)
> Sebastien
>
>
> On Tue, Jul 11, 2017 at 5:04 PM, Maxim Solodovnik <solomax...@gmail.com>
> wrote:
>
>> Hello Sebastien,
>>
>> I'm trying to add MenuItem to wicket-jquery-ui menu with client only JS
>> handler
>> As I understand I need to add AjaxCallListener to MenuItem but it
>> seems I'm unable to find the correct place for it :(
>> Maybe you can help?
>>
>> --
>> WBR
>> Maxim aka solomax
>>
>
>


-- 
WBR
Maxim aka solomax


Re: wicket-jquery-ui menu item with client handler

2017-07-11 Thread Sebastien
Hi Maxim,

MenuItem is a pojo, not a component/widget. You can use the
Menu#getItemList (jquery-ui) or Menu#getMenuItemsMap (kendo-ui) to add
menu-items and then reload the widget with the ART.
But I did not understood what you want/need to listen, there is no lazy
load (in ajax) for instance. The only available ajax-behavior is "onselect"
which triggers both menuItem#onClick(ART) and menu#onclick(ART, menuitem)

I don't know if it helps, otherwise please give me more detail about your
use-case...

Thanks & best regards :)
Sebastien


On Tue, Jul 11, 2017 at 5:04 PM, Maxim Solodovnik <solomax...@gmail.com>
wrote:

> Hello Sebastien,
>
> I'm trying to add MenuItem to wicket-jquery-ui menu with client only JS
> handler
> As I understand I need to add AjaxCallListener to MenuItem but it
> seems I'm unable to find the correct place for it :(
> Maybe you can help?
>
> --
> WBR
> Maxim aka solomax
>


wicket-jquery-ui menu item with client handler

2017-07-11 Thread Maxim Solodovnik
Hello Sebastien,

I'm trying to add MenuItem to wicket-jquery-ui menu with client only JS handler
As I understand I need to add AjaxCallListener to MenuItem but it
seems I'm unable to find the correct place for it :(
Maybe you can help?

-- 
WBR
Maxim aka solomax

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



Re: wicket-jquery-ui examples are down

2017-07-04 Thread Sebastien
Restarted, thanks Maxim !!

On Tue, Jul 4, 2017 at 4:22 PM, Maxim Solodovnik <solomax...@gmail.com>
wrote:

> Hello Sebastien,
>
> I'm getting 503 error while accessing
> http://www.7thweb.net/wicket-jquery-ui/button/DefaultButtonPage
>
> and all other components :(
>
> Could you please take a look?
>
> --
> WBR
> Maxim aka solomax
>


wicket-jquery-ui examples are down

2017-07-04 Thread Maxim Solodovnik
Hello Sebastien,

I'm getting 503 error while accessing
http://www.7thweb.net/wicket-jquery-ui/button/DefaultButtonPage

and all other components :(

Could you please take a look?

-- 
WBR
Maxim aka solomax

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



Wicket jQuery UI 8.0.0-M6 Released

2017-05-21 Thread Sebastien
Dear Wicket jQuery UI users,

Wicket jQuery UI 8.0.0-M6 based on Apache Wicket 8.0.0-M6 is now released!

*Changelog:*

The changelog is unique for 6.27.0, 7.7.0 & -M6 (that's the reason why it
is quite identical to -M5).
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-8.0.0-M6

*Maven dependencies:*




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
8.0.0-M6



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
8.0.0-M6





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
8.0.0-M6



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
8.0.0-M6



*Questions / Issues:*
If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien


Wicket jQuery UI 7.7.0 Released

2017-05-21 Thread Sebastien
Dear Wicket jQuery UI users,

Wicket jQuery UI 7.7.0 based on Apache Wicket 7.7.0 is now released!



*Changelog:*The changelog is unique for 6.27.0, 7.7.0 & -M6.
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-8.0.0-M6


*Maven dependencies:*




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
7.7.0



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
7.7.0





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
7.7.0



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
7.7.0




*Questions / Issues:*If you have any *question*, feel free to ask in the
forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien


Re: wicket-jquery-ui 8.0.0-M6

2017-05-21 Thread Maxim Solodovnik
Thanks a million!

On Sun, May 21, 2017 at 8:10 PM, Sebastien <seb...@gmail.com> wrote:

> Hi Maxim,
>
> It's on its way to maven central! :)
>
> Best regards,
> Sebastien.
>
>
> On Sun, May 21, 2017 at 6:06 AM, Maxim Solodovnik <solomax...@gmail.com>
> wrote:
>
>> Hello Sebastien,
>>
>> can you please release wicket-jquery-ui 8.0.0-M6?
>>
>> --
>> WBR
>> Maxim aka solomax
>>
>
>


-- 
WBR
Maxim aka solomax


Re: wicket-jquery-ui 8.0.0-M6

2017-05-21 Thread Sebastien
Hi Maxim,

It's on its way to maven central! :)

Best regards,
Sebastien.


On Sun, May 21, 2017 at 6:06 AM, Maxim Solodovnik <solomax...@gmail.com>
wrote:

> Hello Sebastien,
>
> can you please release wicket-jquery-ui 8.0.0-M6?
>
> --
> WBR
> Maxim aka solomax
>


wicket-jquery-ui 8.0.0-M6

2017-05-20 Thread Maxim Solodovnik
Hello Sebastien,

can you please release wicket-jquery-ui 8.0.0-M6?

-- 
WBR
Maxim aka solomax


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

2017-04-01 Thread Tobias Soloschenko
Hi,

the fix should make it into the final version 8.0.0 I suggest.

kind regards

Tobias

> Am 01.04.2017 um 16:34 schrieb Sebastien <seb...@gmail.com>:
> 
> As I primarily suspected, there is a JSON issue with the new library used
> in Wicket-8
> https://github.com/openjson/openjson/issues/7
> 
> For the time being, I will deploy the version based on Wicket-7 so you can
> enjoy the chart (and be stunned! :p)
> 
> Best regards,
> Sebastien
> 
> On Sat, Apr 1, 2017 at 5:07 AM, Maxim Solodovnik <solomax...@gmail.com>
> wrote:
> 
>> 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 <seb...@gmail.com> 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 <seb...@gmail.com> wrote:
>>>> 
>>>> Damned! Thanks to let me know maxim!
>>>> I will look at this tonight !
>>>> 
>>>> 
>>>> On Mar 31, 2017 04:40, "Maxim Solodovnik" <solomax...@gmail.com> 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
>> 
>> --
>> You received this message because you are subscribed to the Google Groups
>> "wicket-jquery-ui" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to wicket-jquery-ui+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/
>> msgid/wicket-jquery-ui/CAJmbs8jFyOmU3iEEz_6UHuZ3pPTe%
>> 3D71oRqnWM_TtnFTUbJqH5A%40mail.gmail.com
>> <https://groups.google.com/d/msgid/wicket-jquery-ui/CAJmbs8jFyOmU3iEEz_6UHuZ3pPTe%3D71oRqnWM_TtnFTUbJqH5A%40mail.gmail.com?utm_medium=email_source=footer>
>> .
>> 
>> For more options, visit https://groups.google.com/d/optout.
>> 

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



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

2017-04-01 Thread Sebastien
As I primarily suspected, there is a JSON issue with the new library used
in Wicket-8
https://github.com/openjson/openjson/issues/7

For the time being, I will deploy the version based on Wicket-7 so you can
enjoy the chart (and be stunned! :p)

Best regards,
Sebastien

On Sat, Apr 1, 2017 at 5:07 AM, Maxim Solodovnik <solomax...@gmail.com>
wrote:

> 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 <seb...@gmail.com> 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 <seb...@gmail.com> wrote:
>>
>> > Damned! Thanks to let me know maxim!
>> > I will look at this tonight !
>> >
>> >
>> > On Mar 31, 2017 04:40, "Maxim Solodovnik" <solomax...@gmail.com> 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
>
> --
> You received this message because you are subscribed to the Google Groups
> "wicket-jquery-ui" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to wicket-jquery-ui+unsubscr...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/wicket-jquery-ui/CAJmbs8jFyOmU3iEEz_6UHuZ3pPTe%
> 3D71oRqnWM_TtnFTUbJqH5A%40mail.gmail.com
> <https://groups.google.com/d/msgid/wicket-jquery-ui/CAJmbs8jFyOmU3iEEz_6UHuZ3pPTe%3D71oRqnWM_TtnFTUbJqH5A%40mail.gmail.com?utm_medium=email_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>


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: [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 :(
>
>


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

2017-03-30 Thread Maxim Solodovnik
Thanks a lot for the release Sebastien!
I just have checked Charts demos at
http://www.7thweb.net/wicket-jquery-ui/kendo/chart/LineChartPage?6
All charts seems to be broken :(

On Fri, Mar 31, 2017 at 1:04 AM, Sebastien <seb...@gmail.com> wrote:

> Dear Wicket jQuery UI users,
>
> Wicket jQuery UI 8.0.0-M5 based on Apache Wicket 8.0.0-M5 is now released.
>
> *Changelog:*
> https://github.com/sebfz1/wicket-jquery-ui/releases/tag/
> wicket-jquery-ui-8.0.0-M5
>
> *Maven dependencies:*
>
> 
>
> 
>     com.googlecode.wicket-jquery-ui
> wicket-jquery-ui
> 8.0.0-M5
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-jquery-ui-theme-base
> 8.0.0-M5
> 
>
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-kendo-ui
> 8.0.0-M5
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-kendo-ui-theme-default
> 8.0.0-M5
> 
>
> If you have any *question*, feel free to ask in the forum:
> http://groups.google.com/group/wicket-jquery-ui/
>
> If you notice an *issue*, please report it here:
> https://github.com/sebfz1/wicket-jquery-ui/issues
>
> Enjoy! :)
>



-- 
WBR
Maxim aka solomax


[ANNOUNCE] Apache Wicket jQuery UI 8.0.0-M5 Released

2017-03-30 Thread Sebastien
Dear Wicket jQuery UI users,

Wicket jQuery UI 8.0.0-M5 based on Apache Wicket 8.0.0-M5 is now released.

*Changelog:*
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-8.0.0-M5

*Maven dependencies:*




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
8.0.0-M5



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
8.0.0-M5





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
8.0.0-M5



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
8.0.0-M5


If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)


Re: [ANNONCE] Wicket jQuery UI released: 6.26.0, 7.6.0 & 8.0.0-M3

2017-01-07 Thread Maxim Solodovnik
Thanks Sebastien!

WBR, Maxim
(from mobile, sorry for the typos)

On Jan 7, 2017 22:44, "Sebastien" <seb...@gmail.com> wrote:

> Dear Wicket jQuery UI users,
>
> Wicket jQuery UI 6.26.0 based on Apache Wicket 6.26.0 is now released.
> Wicket jQuery UI 7.6.0 based on Apache Wicket 7.6.0 is now released.
> Wicket jQuery UI 8.0.0-M3 based on Apache Wicket 8.0.0-M3 is now released.
>
> *Changelog:*
>
> All versions are strictly aligned so there is only one changelog:
> https://github.com/sebfz1/wicket-jquery-ui/releases/tag/
> wicket-jquery-ui-8.0.0-M3
>
> *Maven dependencies:*
>
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-jquery-ui
> 7.6.0 
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-jquery-ui-theme-base
> 7.6.0 
> 
>
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-kendo-ui
> 7.6.0 
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-kendo-ui-theme-default
> 7.6.0 
> 
>
> If you have any *question*, feel free to ask in the forum:
> http://groups.google.com/group/wicket-jquery-ui/
>
> If you notice an *issue*, please report it here:
> https://github.com/sebfz1/wicket-jquery-ui/issues
>
> Enjoy! :)
> Sebastien
> http://www.7thweb.net/wicket-jquery-ui
>


[ANNONCE] Wicket jQuery UI released: 6.26.0, 7.6.0 & 8.0.0-M3

2017-01-07 Thread Sebastien
Dear Wicket jQuery UI users,

Wicket jQuery UI 6.26.0 based on Apache Wicket 6.26.0 is now released.
Wicket jQuery UI 7.6.0 based on Apache Wicket 7.6.0 is now released.
Wicket jQuery UI 8.0.0-M3 based on Apache Wicket 8.0.0-M3 is now released.

*Changelog:*

All versions are strictly aligned so there is only one changelog:
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-8.0.0-M3

*Maven dependencies:*




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
7.6.0 



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
7.6.0 





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
7.6.0 



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
7.6.0 


If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien
http://www.7thweb.net/wicket-jquery-ui


Re: Wicket-jQuery-UI vs. Kendo UI

2016-10-06 Thread Martin Grigorov
Hi Manfred,

The difference is: http://jqueryui.com/ vs. http://www.telerik.com/kendo-ui
I.e. there are integrations with these JS UI frameworks.

(Pro) means that this is a paid KendoUI widget. You need to pay a licence
if you want to use it in a paid product.

Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Thu, Oct 6, 2016 at 1:48 PM, Bergmann Manfred <m...@software-by-mabe.com>
wrote:

> Hello.
>
> In the wicket-jquery-ui project there are two widget sets, jQuery UI and
> Kendo UI.
> What’s difference? Are they competing widgets sets or is one a subset of
> the other, or can they be mixed?
> I.e. looking here:
> http://www.7thweb.net/wicket-jquery-ui/
> Something like the DataTable (Pro) doesn’t seem to be available in Wicket
> jQuery UI.
>
>
> Manfred
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: Wicket-jQuery-UI vs. Kendo UI

2016-10-06 Thread Maxim Solodovnik
You can mix components based on your needs and free to mix it :)

On Thu, Oct 6, 2016 at 6:48 PM, Bergmann Manfred
<m...@software-by-mabe.com> wrote:
> Hello.
>
> In the wicket-jquery-ui project there are two widget sets, jQuery UI and 
> Kendo UI.
> What’s difference? Are they competing widgets sets or is one a subset of the 
> other, or can they be mixed?
> I.e. looking here:
> http://www.7thweb.net/wicket-jquery-ui/
> Something like the DataTable (Pro) doesn’t seem to be available in Wicket 
> jQuery UI.
>
>
> Manfred
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>



-- 
WBR
Maxim aka solomax

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



Wicket-jQuery-UI vs. Kendo UI

2016-10-06 Thread Bergmann Manfred
Hello.

In the wicket-jquery-ui project there are two widget sets, jQuery UI and Kendo 
UI.
What’s difference? Are they competing widgets sets or is one a subset of the 
other, or can they be mixed?
I.e. looking here:
http://www.7thweb.net/wicket-jquery-ui/
Something like the DataTable (Pro) doesn’t seem to be available in Wicket 
jQuery UI.


Manfred


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



[ANNONCE] Wicket jQuery UI 7.4.0 released

2016-08-06 Thread Sebastien
Dear Wicket jQuery users,

Wicket jQuery UI 7.4.0 based on Apache Wicket 7.4.0 is now released.

*Changelog:*
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-7.4.0

*Maven dependencies:*




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
7.4.0



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
7.4.0





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
7.4.0



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
7.4.0


If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues
Enjoy! :)
Sebastien


[ANNONCE] Wicket jQuery UI 6.24.0 released

2016-08-06 Thread Sebastien
Dear Wicket jQuery UI users,

Wicket jQuery UI 6.24.0 based on Apache Wicket 6.24.0 is now released.

*Changelog:*
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-6.24.0

*Maven dependencies:*




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
6.24.0



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
6.24.0





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
6.24.0



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
6.24.0


If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues
Enjoy! :)
Sebastien


[ANNONCE] Wicket jQuery UI 8.0.0-M1 released

2016-07-17 Thread Sebastien
Dear Wicket jQuery/Kendo UI users,

Wicket jQuery UI 8.0.0-M1 based on Apache Wicket 8.0.0-M1 is now released.

*Migration Guide:*

The code is aligned to Wicket jQuery UI 7.3.1 so there is no specific
migration other than:

- Wicket itself -
https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+8.0
- org.threeten data/time which should be replaced by java8 date/time.
Removing threeten dependency and reorganizing imports will suffice.
- Custom theme(s), if any

*Libraries:*

- jQuery UI: 1.12.0
- Kendo UI: 2016.2.714

*Maven dependencies:*




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
8.0.0-M1



com.googlecode.wicket-jquery-ui
wicket-jquery-ui-theme-base
8.0.0-M1





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
8.0.0-M1



com.googlecode.wicket-jquery-ui
wicket-kendo-ui-theme-default
8.0.0-M1


If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues
Enjoy! :)
Sebastien.
http://www.7thweb.net/wicket-jquery-ui


Re: [ANNONCE] Wicket jQuery UI 7.3.0 released

2016-05-09 Thread Maxim Solodovnik
Thanks a lot Sebastien!

On Mon, May 9, 2016 at 4:24 PM, Sebastien <seb...@gmail.com> wrote:

> Dear Wicket jQuery & Kendo UI users,
>
> Wicket jQuery UI 7.3.0 based on Apache Wicket 7.3.0 is now released.
>
> *Changelog:*
>
>
> https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-7.3.0
>
> *Maven dependencies*
>
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-jquery-ui
> 7.3.0
> 
>
> 
>
> 
> com.googlecode.wicket-jquery-ui
> wicket-kendo-ui
> 7.3.0
> 
>
> If you have any *question*, feel free to ask in the forum:
> http://groups.google.com/group/wicket-jquery-ui/
>
> If you notice an *issue*, please report it here:
> https://github.com/sebfz1/wicket-jquery-ui/issues
>
> Enjoy! :)
> Sebastien.
>



-- 
WBR
Maxim aka solomax


[ANNONCE] Wicket jQuery UI 6.23.0 released

2016-05-09 Thread Sebastien
Dear Wicket jQuery & Kendo UI users,

Wicket jQuery UI 6.23.0 based on Apache Wicket 6.23.0 is now released.

*Changelog* (same as 7.3.0)

https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-7.3.0

*Maven dependencies*




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
6.23.0





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
6.23.0


If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien.


[ANNONCE] Wicket jQuery UI 7.3.0 released

2016-05-09 Thread Sebastien
Dear Wicket jQuery & Kendo UI users,

Wicket jQuery UI 7.3.0 based on Apache Wicket 7.3.0 is now released.

*Changelog:*

https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-7.3.0

*Maven dependencies*




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
7.3.0





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
7.3.0


If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice an *issue*, please report it here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien.


Re: Wicket jQuery UI - 4th anniversary!

2016-05-08 Thread Maxim Solodovnik
Thanks a lot Sebastien for the great work!
wicket-jquery-ui helps to make our application to work and look better :)
I really appreciate your quick answers :)

On Wed, May 4, 2016 at 1:32 AM, Sebastien <seb...@gmail.com> wrote:

> Thank you Andrea & Tobias, glad to read you like the new site! :)
>
> @Tobias, I will test srcset :)
>
> Best regards,
> Sebastien.
>
>
> On Tue, May 3, 2016 at 7:48 AM, Tobias Soloschenko <
> tobiassolosche...@googlemail.com> wrote:
>
> > Congratulations also from me! Good to see that project is moving forward!
> > Also a very cool design with some fancy animations on hover. :-)
> >
> > One hint: For the background image you can use srcset provided via
> > wicket-core to only load an img with the required size, or to change it
> > when resizing the window. (picture tag - not supported with IE11) - Sweet
> > cat demo:
> >
> > http://googlechrome.github.io/samples/picture-element/
> >
> > If you use the picture tag, you can configure a fallback to be used for
> IE
> > or other browser which do not support it:
> >
> > * http://caniuse.com/#search=picture
> > * http://caniuse.com/#search=srcset
> > * http://caniuse.com/#search=source
> >
> >
> >
> https://ci.apache.org/projects/wicket/guide/7.x/guide/resources.html#resources_3
> >
> > //code
> >
> > 
> > 
> > 
> > 
> > 
> >
> > This will lead to a better performance for mobile devices with a bad
> > connection.
> >
> > kind regards
> >
> > Tobias
> >
> > 2016-05-02 23:03 GMT+02:00 Andrea Del Bene <an.delb...@gmail.com>:
> >
> > > Congratulations Sebastien!!! And the new site is REALLY nice!
> > >
> > > Andrea
> > >
> > > On 02/05/2016 22:52, Sebastien wrote:
> > >
> > >> Dear Wicket jQuery UI users,
> > >>
> > >> I'm happy to announce the 4th anniversary of the project since its
> first
> > >> release! :)
> > >>
> > >> *Stats*
> > >>
> > >> A few words about project's stats:
> > >> - visits on the demo site almost reach 550k pageviews since its launch
> > >> - artifact downloads are still increasing
> > >> - Kendo UI is confirming its progression over jQuery UI
> > >>
> > >> There is a (very) big peak on march, which might be due to a recent
> > InfoQ
> > >> interview about Wicket 7.2.0 (on which Wicket jQuery UI was quoted)
> [1].
> > >>
> > >> *Surprise!*
> > >>
> > >> This year, the project gets a very nice birthday gift from my
> > >> best-geek-girl-friend! Thanks to her, the demo site has a brand new
> > >> responsive skin :)
> > >> It is not yet officially active, but you can still have a preview [2],
> > >> your feedback is more than welcome!
> > >>
> > >>
> > >> Thanks again for your confidence and, to whom is concerned, your very
> > >> precious help! :)
> > >>
> > >> -Sebastien.
> > >>
> > >> [1] http://www.infoq.com/news/2016/03/apache-wicket-7.2
> > >> [2] http://163.172.29.241/wicket-jquery-ui/
> > >>
> > >>
> > >>
> > >> -
> > >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > >> For additional commands, e-mail: users-h...@wicket.apache.org
> > >>
> > >
> > >
> >
>



-- 
WBR
Maxim aka solomax


Re: Wicket jQuery UI - 4th anniversary!

2016-05-03 Thread Sebastien
Thank you Andrea & Tobias, glad to read you like the new site! :)

@Tobias, I will test srcset :)

Best regards,
Sebastien.


On Tue, May 3, 2016 at 7:48 AM, Tobias Soloschenko <
tobiassolosche...@googlemail.com> wrote:

> Congratulations also from me! Good to see that project is moving forward!
> Also a very cool design with some fancy animations on hover. :-)
>
> One hint: For the background image you can use srcset provided via
> wicket-core to only load an img with the required size, or to change it
> when resizing the window. (picture tag - not supported with IE11) - Sweet
> cat demo:
>
> http://googlechrome.github.io/samples/picture-element/
>
> If you use the picture tag, you can configure a fallback to be used for IE
> or other browser which do not support it:
>
> * http://caniuse.com/#search=picture
> * http://caniuse.com/#search=srcset
> * http://caniuse.com/#search=source
>
>
> https://ci.apache.org/projects/wicket/guide/7.x/guide/resources.html#resources_3
>
> //code
>
> 
> 
> 
> 
> 
>
> This will lead to a better performance for mobile devices with a bad
> connection.
>
> kind regards
>
> Tobias
>
> 2016-05-02 23:03 GMT+02:00 Andrea Del Bene <an.delb...@gmail.com>:
>
> > Congratulations Sebastien!!! And the new site is REALLY nice!
> >
> > Andrea
> >
> > On 02/05/2016 22:52, Sebastien wrote:
> >
> >> Dear Wicket jQuery UI users,
> >>
> >> I'm happy to announce the 4th anniversary of the project since its first
> >> release! :)
> >>
> >> *Stats*
> >>
> >> A few words about project's stats:
> >> - visits on the demo site almost reach 550k pageviews since its launch
> >> - artifact downloads are still increasing
> >> - Kendo UI is confirming its progression over jQuery UI
> >>
> >> There is a (very) big peak on march, which might be due to a recent
> InfoQ
> >> interview about Wicket 7.2.0 (on which Wicket jQuery UI was quoted) [1].
> >>
> >> *Surprise!*
> >>
> >> This year, the project gets a very nice birthday gift from my
> >> best-geek-girl-friend! Thanks to her, the demo site has a brand new
> >> responsive skin :)
> >> It is not yet officially active, but you can still have a preview [2],
> >> your feedback is more than welcome!
> >>
> >>
> >> Thanks again for your confidence and, to whom is concerned, your very
> >> precious help! :)
> >>
> >> -Sebastien.
> >>
> >> [1] http://www.infoq.com/news/2016/03/apache-wicket-7.2
> >> [2] http://163.172.29.241/wicket-jquery-ui/
> >>
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> For additional commands, e-mail: users-h...@wicket.apache.org
> >>
> >
> >
>


Re: Wicket jQuery UI - 4th anniversary!

2016-05-02 Thread Tobias Soloschenko
Congratulations also from me! Good to see that project is moving forward!
Also a very cool design with some fancy animations on hover. :-)

One hint: For the background image you can use srcset provided via
wicket-core to only load an img with the required size, or to change it
when resizing the window. (picture tag - not supported with IE11) - Sweet
cat demo:

http://googlechrome.github.io/samples/picture-element/

If you use the picture tag, you can configure a fallback to be used for IE
or other browser which do not support it:

* http://caniuse.com/#search=picture
* http://caniuse.com/#search=srcset
* http://caniuse.com/#search=source

https://ci.apache.org/projects/wicket/guide/7.x/guide/resources.html#resources_3

//code







This will lead to a better performance for mobile devices with a bad
connection.

kind regards

Tobias

2016-05-02 23:03 GMT+02:00 Andrea Del Bene <an.delb...@gmail.com>:

> Congratulations Sebastien!!! And the new site is REALLY nice!
>
> Andrea
>
> On 02/05/2016 22:52, Sebastien wrote:
>
>> Dear Wicket jQuery UI users,
>>
>> I'm happy to announce the 4th anniversary of the project since its first
>> release! :)
>>
>> *Stats*
>>
>> A few words about project's stats:
>> - visits on the demo site almost reach 550k pageviews since its launch
>> - artifact downloads are still increasing
>> - Kendo UI is confirming its progression over jQuery UI
>>
>> There is a (very) big peak on march, which might be due to a recent InfoQ
>> interview about Wicket 7.2.0 (on which Wicket jQuery UI was quoted) [1].
>>
>> *Surprise!*
>>
>> This year, the project gets a very nice birthday gift from my
>> best-geek-girl-friend! Thanks to her, the demo site has a brand new
>> responsive skin :)
>> It is not yet officially active, but you can still have a preview [2],
>> your feedback is more than welcome!
>>
>>
>> Thanks again for your confidence and, to whom is concerned, your very
>> precious help! :)
>>
>> -Sebastien.
>>
>> [1] http://www.infoq.com/news/2016/03/apache-wicket-7.2
>> [2] http://163.172.29.241/wicket-jquery-ui/
>>
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>
>


Re: Wicket jQuery UI - 4th anniversary!

2016-05-02 Thread Andrea Del Bene

Congratulations Sebastien!!! And the new site is REALLY nice!

Andrea

On 02/05/2016 22:52, Sebastien wrote:

Dear Wicket jQuery UI users,

I'm happy to announce the 4th anniversary of the project since its 
first release! :)


*Stats*

A few words about project's stats:
- visits on the demo site almost reach 550k pageviews since its launch
- artifact downloads are still increasing
- Kendo UI is confirming its progression over jQuery UI

There is a (very) big peak on march, which might be due to a recent 
InfoQ interview about Wicket 7.2.0 (on which Wicket jQuery UI was 
quoted) [1].


*Surprise!*

This year, the project gets a very nice birthday gift from my 
best-geek-girl-friend! Thanks to her, the demo site has a brand new 
responsive skin :)
It is not yet officially active, but you can still have a preview [2], 
your feedback is more than welcome!



Thanks again for your confidence and, to whom is concerned, your very 
precious help! :)


-Sebastien.

[1] http://www.infoq.com/news/2016/03/apache-wicket-7.2
[2] http://163.172.29.241/wicket-jquery-ui/



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




Wicket jQuery UI - 4th anniversary!

2016-05-02 Thread Sebastien
Dear Wicket jQuery UI users,

I'm happy to announce the 4th anniversary of the project since its first
release! :)

*Stats*

A few words about project's stats:
- visits on the demo site almost reach 550k pageviews since its launch
- artifact downloads are still increasing
- Kendo UI is confirming its progression over jQuery UI

There is a (very) big peak on march, which might be due to a recent InfoQ
interview about Wicket 7.2.0 (on which Wicket jQuery UI was quoted) [1].

*Surprise!*

This year, the project gets a very nice birthday gift from my
best-geek-girl-friend! Thanks to her, the demo site has a brand new
responsive skin :)
It is not yet officially active, but you can still have a preview [2], your
feedback is more than welcome!


Thanks again for your confidence and, to whom is concerned, your very
precious help! :)

-Sebastien.

[1] http://www.infoq.com/news/2016/03/apache-wicket-7.2
[2] http://163.172.29.241/wicket-jquery-ui/

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

[ANNONCE] Wicket jQuery UI 6.22.0 released

2016-02-25 Thread Sebastien
*(just saw this in my draft folder, sorry for the delay... ;))*

Dear Wicket jQuery & Kendo UI users,

Wicket jQuery UI 6.22.0 based on Apache Wicket 6.22.0 is now released.

*Changelog (same as 7.2.0)*

https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-7.2.0

*Maven dependencies*

**


com.googlecode.wicket-jquery-ui
wicket-jquery-ui
6.22.0


**


com.googlecode.wicket-jquery-ui
wicket-kendo-ui
6.22.0



If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice a problem, please open an issue here:
https://github.com/sebfz1/wicket-jquery-ui/issues


Enjoy! :)
Sebastien


[ANNONCE] Wicket jQuery UI 7.2.0 released

2016-01-31 Thread Sebastien
Dear Wicket jQuery & Kendo UI users,

Wicket jQuery UI 7.2.0 based on Apache Wicket 7.2.0 is now released.

*Changelog*

https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-7.2.0

*Maven dependencies*

**


com.googlecode.wicket-jquery-ui
wicket-jquery-ui
7.2.0


**


com.googlecode.wicket-jquery-ui
wicket-kendo-ui
7.2.0



If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice a problem, please open an issue here:
https://github.com/sebfz1/wicket-jquery-ui/issues


Enjoy! :)
Sebastien


RE: Wicket jQuery UI - Spinner for time

2015-12-30 Thread Ephraim Rosenfeld
Hello Sebastien:

I've created the request: https://github.com/sebfz1/wicket-jquery-ui/issues/217.

Thanks so much for following up and for your contributions to the development 
community.

Regards,

- Ephraim

-Original Message-
From: Sebastien [mailto:seb...@gmail.com] 
Sent: Wednesday, December 30, 2015 11:22 AM
To: users@wicket.apache.org
Subject: Re: Wicket jQuery UI - Spinner for time

Hi Ephraim,

The jQuery UI timespinner is not just matter of configuration, is a new widget 
extending from the spinner; that's why it's not straightforward to make it work.
I think it make sense to add it to the library, so please fill an issue:
https://github.com/sebfz1/wicket-jquery-ui/issues

I am already working on it, so it can be quick...

Thanks & best regards,
Sebastien.


On Wed, Dec 30, 2015 at 12:31 PM, Ephraim Rosenfeld <erosenf...@knoa.com>
wrote:

> Hello Wicket Team:
>
> I would like to use the Wicket jQuery UI "Spinner" widget, as shown here:
> http://www.7thweb.net/wicket-jquery-ui/spinner/DefaultSpinnerPage?0, 
> for a time field, like this example:
> https://jqueryui.com/resources/demos/spinner/time.html. This example 
> adds some additional jQuery Widget Factory code to override the 
> default functionality to format a date into a time field, e.g. '11:47 
> AM', and likewise, to parse new input back into a date.
>
> Is this possible to do via Wicket? Adding the additional jQuery Widget 
> Factory code in the example above did not seem to do the trick.
>
> I was thinking of using Ajax to update the component on the "onspin"
> event, which gets fired when one of the spinner arrow buttons are 
> pressed; however, I have no indication as to whether the value should 
> be incremented or decremented. Capturing the event on the "onspinstop" 
> event is sort of too late, because at this point, the widget already 
> gets populated with the integer value as determined by the arrow buttons.
>
> The jQuery UI documentation here (
> http://api.jqueryui.com/spinner/#event-spin<
> http://api.jqueryui.com/spinner/%23event-spin>) states that the input 
> can be obtained on the "onspin" event using the "ui.value" property, 
> and this can be used to determine whether the value in the field is to 
> be incremented/decremented. Is this property exposed on the Java layer 
> via Wicket?
>
> I am using Wicket version 6.15.
>
> Thank you in advance,
>
> - Ephraim
>


Re: Wicket jQuery UI - Spinner for time

2015-12-30 Thread Sebastien
Hi Ephraim,

The jQuery UI timespinner is not just matter of configuration, is a new
widget extending from the spinner; that's why it's not straightforward to
make it work.
I think it make sense to add it to the library, so please fill an issue:
https://github.com/sebfz1/wicket-jquery-ui/issues

I am already working on it, so it can be quick...

Thanks & best regards,
Sebastien.


On Wed, Dec 30, 2015 at 12:31 PM, Ephraim Rosenfeld <erosenf...@knoa.com>
wrote:

> Hello Wicket Team:
>
> I would like to use the Wicket jQuery UI "Spinner" widget, as shown here:
> http://www.7thweb.net/wicket-jquery-ui/spinner/DefaultSpinnerPage?0, for
> a time field, like this example:
> https://jqueryui.com/resources/demos/spinner/time.html. This example adds
> some additional jQuery Widget Factory code to override the default
> functionality to format a date into a time field, e.g. '11:47 AM', and
> likewise, to parse new input back into a date.
>
> Is this possible to do via Wicket? Adding the additional jQuery Widget
> Factory code in the example above did not seem to do the trick.
>
> I was thinking of using Ajax to update the component on the "onspin"
> event, which gets fired when one of the spinner arrow buttons are pressed;
> however, I have no indication as to whether the value should be incremented
> or decremented. Capturing the event on the "onspinstop" event is sort of
> too late, because at this point, the widget already gets populated with the
> integer value as determined by the arrow buttons.
>
> The jQuery UI documentation here (
> http://api.jqueryui.com/spinner/#event-spin<
> http://api.jqueryui.com/spinner/%23event-spin>) states that the input can
> be obtained on the "onspin" event using the "ui.value" property, and this
> can be used to determine whether the value in the field is to be
> incremented/decremented. Is this property exposed on the Java layer via
> Wicket?
>
> I am using Wicket version 6.15.
>
> Thank you in advance,
>
> - Ephraim
>


Wicket jQuery UI - Spinner for time

2015-12-30 Thread Ephraim Rosenfeld
Hello Wicket Team:

I would like to use the Wicket jQuery UI "Spinner" widget, as shown here: 
http://www.7thweb.net/wicket-jquery-ui/spinner/DefaultSpinnerPage?0, for a time 
field, like this example: 
https://jqueryui.com/resources/demos/spinner/time.html. This example adds some 
additional jQuery Widget Factory code to override the default functionality to 
format a date into a time field, e.g. '11:47 AM', and likewise, to parse new 
input back into a date.

Is this possible to do via Wicket? Adding the additional jQuery Widget Factory 
code in the example above did not seem to do the trick.

I was thinking of using Ajax to update the component on the "onspin" event, 
which gets fired when one of the spinner arrow buttons are pressed; however, I 
have no indication as to whether the value should be incremented or 
decremented. Capturing the event on the "onspinstop" event is sort of too late, 
because at this point, the widget already gets populated with the integer value 
as determined by the arrow buttons.

The jQuery UI documentation here 
(http://api.jqueryui.com/spinner/#event-spin<http://api.jqueryui.com/spinner/%23event-spin>)
 states that the input can be obtained on the "onspin" event using the 
"ui.value" property, and this can be used to determine whether the value in the 
field is to be incremented/decremented. Is this property exposed on the Java 
layer via Wicket?

I am using Wicket version 6.15.

Thank you in advance,

- Ephraim


[ANNONCE] Wicket jQuery UI 6.21.0 released

2015-11-15 Thread Sebastien
Dear users,

Wicket jQuery UI 6.21.0 based on Apache Wicket 6.21.0 is now released.

*Changelog (aligned with *
*7.1.0)*
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-7.1.0


*API Breaks:*

Kendo UI: removed non-functioning DropDownList template ability, use
lazy.DropDownList instead
Kendo UI: DataTable, CommandButton#match now takes the name as argument,
not the text - SILENT API BREAK


*Maven dependencies:*




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
6.21.0





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
6.21.0



If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice any *problem*, please open an issue here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien


[ANNONCE] Wicket jQuery UI 7.1.0 released

2015-10-26 Thread Sebastien
Dear wicket-[jquery|kendo]-ui users,

Wicket jQuery UI 7.1.0 based on Apache Wicket 7.1.0 is now released.



*Changelog:*
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-7.1.0


*API Breaks:*

Kendo UI: removed non-functioning DropDownList template ability, use
lazy.DropDownList instead
Kendo UI: DataTable, CommandButton#match now takes the name as argument,
not the text - SILENT API BREAK


*Maven dependencies:*




com.googlecode.wicket-jquery-ui
wicket-jquery-ui
7.1.0





com.googlecode.wicket-jquery-ui
wicket-kendo-ui
7.1.0



If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice any problem, please open an issue here:
https://github.com/sebfz1/wicket-jquery-ui/issues

Enjoy! :)
Sebastien


Re: Wicket jQuery UI 7.0.0 pre-release

2015-08-29 Thread Sebastien
Here is the changelog, sorry for the delay!
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-7.0.0



On Mon, Aug 3, 2015 at 11:55 PM, Sebastien seb...@gmail.com wrote:

 Dear wicket-jquery-ui users,

 Wicket jQuery UI 7.0.0 based on Apache Wicket 7.0.0 is now pre-released.

 A pre-release means that it is available through the oss sonatype staging
 repository, the aim is to have a chance to test the release before it
 becomes definitive and pushed at maven central.

 Staging Repository:

 repositories
 repository
 idsonatype-releases/id
 nameSonatype Releases Repository/name
 url
 https://oss.sonatype.org/content/repositories/comgooglecodewicket-jquery-ui-1024
 /url
 /repository
 /repositories

 Maven dependencies:

 !-- Wicket jQuery UI --

 dependency
 groupIdcom.googlecode.wicket-jquery-ui/groupId
 artifactIdwicket-jquery-ui/artifactId
 version7.0.0/version
 /dependency

 !-- Wicket Kendo UI --

 dependency
 groupIdcom.googlecode.wicket-jquery-ui/groupId
 artifactIdwicket-kendo-ui/artifactId
 version7.0.0/version
 /dependency

 If you have any *question*, feel free to ask in the forum:
 http://groups.google.com/group/wicket-jquery-ui/

 If you notice any problem, please open an issue:
 https://github.com/sebfz1/wicket-jquery-ui/issues

 Feedbacks  votes are welcome!

 Thanks in advance  enjoy,
 Sebastien



wicket-jquery-ui calendar locale question

2015-08-07 Thread Sandor Feher
Hi,


Now I'm checking if calendar component suits to our needs
(http://www.7thweb.net/wicket-jquery-ui/calendar/ExtendedCalendarPage?).

Is there any options which influence the locale behaviour of Calendar
component ?
For example in header section the year and month name order and so one.

TIA, Sandor


--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/wicket-jquery-ui-calendar-locale-question-tp4671747.html
Sent from the Users forum mailing list archive at Nabble.com.

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



Re: wicket-jquery-ui calendar locale question

2015-08-07 Thread Sebastien
Hi Sandor

You should have a look at fullcalendar.js config:
http://fullcalendar.io/docs/

If you want to use l10n:
http://fullcalendar.io/docs/text/lang/

You might need to use lang-all.js, which is already shipped and you can
find it in com.googlecode.wicket.jquery.ui.calendar.resource package,
however the corresponding ResourceReference is not yet supplied, you have
to reference it by yourself (see JavaScriptPackageResource)

Hope this helps,
Sebastien


On Fri, Aug 7, 2015 at 11:56 AM, Sandor Feher sfe...@bluesystem.hu wrote:

 Hi,


 Now I'm checking if calendar component suits to our needs
 (http://www.7thweb.net/wicket-jquery-ui/calendar/ExtendedCalendarPage?).

 Is there any options which influence the locale behaviour of Calendar
 component ?
 For example in header section the year and month name order and so one.

 TIA, Sandor


 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/wicket-jquery-ui-calendar-locale-question-tp4671747.html
 Sent from the Users forum mailing list archive at Nabble.com.

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




Re: wicket-jquery-ui calendar locale question

2015-08-07 Thread Sandor Feher
Hi Sebastien,

Thanks for the quick response.
Now the picture is getting clear :).

So I need to use JavaScriptPackageResource to load corresponding lang-all.js
in my panel  do I ?

TIA, Sandor

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/wicket-jquery-ui-calendar-locale-question-tp4671747p4671749.html
Sent from the Users forum mailing list archive at Nabble.com.

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



Re: wicket-jquery-ui calendar locale question

2015-08-07 Thread Sebastien
Hi Sandor,

On Fri, Aug 7, 2015 at 2:49 PM, Sandor Feher sfe...@bluesystem.hu wrote:

 Hi Sebastien,

 Thanks for the quick response.
 Now the picture is getting clear :).

 So I need to use JavaScriptPackageResource to load corresponding
 lang-all.js
 in my panel  do I ?


Right, if you want/need to use l10n...



 TIA, Sandor

 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/wicket-jquery-ui-calendar-locale-question-tp4671747p4671749.html
 Sent from the Users forum mailing list archive at Nabble.com.

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




Wicket jQuery UI 7.0.0 pre-release

2015-08-03 Thread Sebastien
Dear wicket-jquery-ui users,

Wicket jQuery UI 7.0.0 based on Apache Wicket 7.0.0 is now pre-released.

A pre-release means that it is available through the oss sonatype staging
repository, the aim is to have a chance to test the release before it
becomes definitive and pushed at maven central.

Staging Repository:

repositories
repository
idsonatype-releases/id
nameSonatype Releases Repository/name
url
https://oss.sonatype.org/content/repositories/comgooglecodewicket-jquery-ui-1024
/url
/repository
/repositories

Maven dependencies:

!-- Wicket jQuery UI --

dependency
groupIdcom.googlecode.wicket-jquery-ui/groupId
artifactIdwicket-jquery-ui/artifactId
version7.0.0/version
/dependency

!-- Wicket Kendo UI --

dependency
groupIdcom.googlecode.wicket-jquery-ui/groupId
artifactIdwicket-kendo-ui/artifactId
version7.0.0/version
/dependency

If you have any *question*, feel free to ask in the forum:
http://groups.google.com/group/wicket-jquery-ui/

If you notice any problem, please open an issue:
https://github.com/sebfz1/wicket-jquery-ui/issues

Feedbacks  votes are welcome!

Thanks in advance  enjoy,
Sebastien


Re: [wicket-jquery-ui] Error while parsing datetime when using AjaxFormComponentBehavior with DateTimePicker

2015-07-09 Thread Martin Grigorov
Hi,

This may be a limitation of Wicket itself.

DateTimePicker is a FormComponentPanel, i.e. it is not attached to HTML
form element but most probably to a div that has some HTML form elements
inside it.
I am not 100% sure but AFAIR wicket-ajax.js doesn't traverse the children
of the div. It just tries to get the 'value' of the form component with
wicket:id on it, in this case the div, so it will send 'null' as a value.
Once this is improved I think we will need to improve the server side as
well. As you can see at [1] it updates only the formComponent's model, but
not the models of its children in case of FormComponentPanel.

I'll be able to run the application later today or tomorrow to confirm this.

Please file a ticket for improvement at Wicket JIRA.
Thanks!

1.
https://github.com/apache/wicket/blob/master/wicket-core/src/main/java/org/apache/wicket/ajax/form/AjaxFormComponentUpdatingBehavior.java#L144-L160

On Thu, Jul 9, 2015 at 2:13 PM, Václav Čermák vvcer...@gmail.com wrote:

 Hi,

 I'am facing another problem with DateTimePicker. I attached
 AjaxFormComponentBehavior on it:

 import com.googlecode.wicket.kendo.ui.form.datetime.DateTimePicker;

 import org.apache.wicket.markup.html.basic.Label;
 import org.apache.wicket.ajax.AjaxRequestTarget;
 import org.apache.wicket.ajax.form.AjaxFormComponentUpdatingBehavior;
 import org.apache.wicket.markup.html.WebMarkupContainer;
 import org.apache.wicket.markup.html.WebPage;

 public class HomePage extends WebPage {
 private static final long serialVersionUID = 1L;

 private WebMarkupContainer dtp;

 public HomePage(final PageParameters parameters) {
 super(parameters);

 add(new Label(version, getApplication().getFrameworkSettings().
 getVersion()));

 add(dtp = new DateTimePicker(dtp));
 dtp.setOutputMarkupId(true);
 dtp.add(new AjaxFormComponentUpdatingBehavior(onchange)
 {

 @Override
 protected void onUpdate(AjaxRequestTarget target)
 {
 System.out.println(CHANGED!);
 }
 });

 }

 }

 and I'am getting an error:

 Value of variable [[date]] could not be resolved while interpolating [[Error 
 while parsing datetime: date was '${date}' and time was '${time}']]


 when I try to change a date in browser. This error I'am getting from
 attached quickstart as well ...


  --
 You received this message because you are subscribed to the Google Groups
 wicket-jquery-ui group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to wicket-jquery-ui+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/wicket-jquery-ui/edc29b75-17b9-4181-bb15-21e630af905f%40googlegroups.com
 https://groups.google.com/d/msgid/wicket-jquery-ui/edc29b75-17b9-4181-bb15-21e630af905f%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.



Re: [wicket-jquery-ui] Error while parsing datetime when using AjaxFormComponentBehavior with DateTimePicker

2015-07-09 Thread Václav Čermák
 I created this issue:

https://issues.apache.org/jira/browse/WICKET-5948

I think, that you are right, I lurked into a code with debugger a bit and 
it fails on null values of date and time inputs forming whole datetime 
input.


Dne čtvrtek 9. července 2015 13:25:51 UTC+2 Martin Grigorov napsal(a):

 Hi,

 This may be a limitation of Wicket itself.

 DateTimePicker is a FormComponentPanel, i.e. it is not attached to HTML 
 form element but most probably to a div that has some HTML form elements 
 inside it.
 I am not 100% sure but AFAIR wicket-ajax.js doesn't traverse the children 
 of the div. It just tries to get the 'value' of the form component with 
 wicket:id on it, in this case the div, so it will send 'null' as a value.
 Once this is improved I think we will need to improve the server side as 
 well. As you can see at [1] it updates only the formComponent's model, but 
 not the models of its children in case of FormComponentPanel.

 I'll be able to run the application later today or tomorrow to confirm 
 this.

 Please file a ticket for improvement at Wicket JIRA.
 Thanks!

 1. 
 https://github.com/apache/wicket/blob/master/wicket-core/src/main/java/org/apache/wicket/ajax/form/AjaxFormComponentUpdatingBehavior.java#L144-L160

 On Thu, Jul 9, 2015 at 2:13 PM, Václav Čermák vvce...@gmail.com 
 javascript: wrote:

 Hi,

 I'am facing another problem with DateTimePicker. I attached 
 AjaxFormComponentBehavior on it:

 import com.googlecode.wicket.kendo.ui.form.datetime.DateTimePicker;

 import org.apache.wicket.markup.html.basic.Label;
 import org.apache.wicket.ajax.AjaxRequestTarget;
 import org.apache.wicket.ajax.form.AjaxFormComponentUpdatingBehavior;
 import org.apache.wicket.markup.html.WebMarkupContainer;
 import org.apache.wicket.markup.html.WebPage;

 public class HomePage extends WebPage {
 private static final long serialVersionUID = 1L;

 private WebMarkupContainer dtp;
 
 public HomePage(final PageParameters parameters) {
 super(parameters);

 add(new Label(version, getApplication().getFrameworkSettings().
 getVersion()));

 add(dtp = new DateTimePicker(dtp));
 dtp.setOutputMarkupId(true);
 dtp.add(new AjaxFormComponentUpdatingBehavior(onchange)
 {
 
 @Override
 protected void onUpdate(AjaxRequestTarget target)
 {
 System.out.println(CHANGED!);
 }
 });
 
 }
 
 }

 and I'am getting an error:

 Value of variable [[date]] could not be resolved while interpolating [[Error 
 while parsing datetime: date was '${date}' and time was '${time}']]


 when I try to change a date in browser. This error I'am getting from 
 attached quickstart as well ...


  -- 
 You received this message because you are subscribed to the Google Groups 
 wicket-jquery-ui group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to wicket-jquery-...@googlegroups.com javascript:.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/wicket-jquery-ui/edc29b75-17b9-4181-bb15-21e630af905f%40googlegroups.com
  
 https://groups.google.com/d/msgid/wicket-jquery-ui/edc29b75-17b9-4181-bb15-21e630af905f%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.



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

Re: [wicket-jquery-ui] Wicket jQuery UI 6.20.0 pre-release

2015-06-28 Thread Martin Grigorov
Dear wicket-jquery-ui users,

Wicket jQuery UI 6.20.0 and 7.0.0-M6 have been released and soon will be
available at Maven Central!

Enjoy!

The Wicket jQuery UI team


On Sat, Jun 20, 2015 at 12:14 AM, Sebastien seb...@gmail.com wrote:

 Dear wicket-jquery-ui users,

 Wicket jQuery UI 6.20.0 based on Apache Wicket 6.20.0 is now pre-released.

 A pre-release means that it is available trough the oss sonatype staging
 repository only, the aim is to have a chance to test the release before it
 becomes definitive and pushed at maven central.

 This version comes with a significant amount of changes, including some
 API breaks.
 It is highly recommended to read the changelog:

 https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-6.20.0

 *Staging Repository*

 repositories
 repository
 idsonatype-releases/id
 nameSonatype Releases Repository/name
 url
 https://oss.sonatype.org/content/repositories/comgooglecodewicket-jquery-ui-1019
 /url
 /repository
 /repositories

 *Maven dependencies*

 Wicket jQuery UI

 dependency
 groupIdcom.googlecode.wicket-jquery-ui/groupId
 artifactIdwicket-jquery-ui/artifactId
 version6.20.0/version
 /dependency

 Wicket Kendo UI

 dependency
 groupIdcom.googlecode.wicket-jquery-ui/groupId
 artifactIdwicket-kendo-ui/artifactId
 version6.20.0/version
 /dependency

 Should you notice any issue/regression, please open an issue:
 https://github.com/sebfz1/wicket-jquery-ui/issues

 Feedbacks  votes are welcome!

 Thanks in advance  enjoy,
 Sebastien
 http://www.7thweb.net/wicket-jquery-ui/

  --
 You received this message because you are subscribed to the Google Groups
 wicket-jquery-ui group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to wicket-jquery-ui+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/wicket-jquery-ui/CAAJwaYU4NEgZ4p56C4EQtCNtVXy1-MqH6R6X-dz%3Dx92rvxnfYw%40mail.gmail.com
 https://groups.google.com/d/msgid/wicket-jquery-ui/CAAJwaYU4NEgZ4p56C4EQtCNtVXy1-MqH6R6X-dz%3Dx92rvxnfYw%40mail.gmail.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.



Wicket jQuery UI 6.20.0 pre-release

2015-06-19 Thread Sebastien
Dear wicket-jquery-ui users,

Wicket jQuery UI 6.20.0 based on Apache Wicket 6.20.0 is now pre-released.

A pre-release means that it is available trough the oss sonatype staging
repository only, the aim is to have a chance to test the release before it
becomes definitive and pushed at maven central.

This version comes with a significant amount of changes, including some API
breaks.
It is highly recommended to read the changelog:
https://github.com/sebfz1/wicket-jquery-ui/releases/tag/wicket-jquery-ui-6.20.0

*Staging Repository*

repositories
repository
idsonatype-releases/id
nameSonatype Releases Repository/name
url
https://oss.sonatype.org/content/repositories/comgooglecodewicket-jquery-ui-1019
/url
/repository
/repositories

*Maven dependencies*

Wicket jQuery UI

dependency
groupIdcom.googlecode.wicket-jquery-ui/groupId
artifactIdwicket-jquery-ui/artifactId
version6.20.0/version
/dependency

Wicket Kendo UI

dependency
groupIdcom.googlecode.wicket-jquery-ui/groupId
artifactIdwicket-kendo-ui/artifactId
version6.20.0/version
/dependency

Should you notice any issue/regression, please open an issue:
https://github.com/sebfz1/wicket-jquery-ui/issues

Feedbacks  votes are welcome!

Thanks in advance  enjoy,
Sebastien
http://www.7thweb.net/wicket-jquery-ui/


Re: Wicket JQuery Ajax Slider

2015-04-04 Thread Sebastien
Hi Chris,

The slider does not need any additional dependency...

First question: are you using a wicket-jquery-ui-theme dependency or a
custom one?
In case of the second option, this might a version issue, even if it's
supposed to be backward compatible...
They released a new version some days ago and I am not yet up-to-date...

Please also double check if jquery-ui.js and jquery-ui.css are well
included and rendered (no 404) in your page.

Best regards,
Sebastien


Re: Wicket JQuery Ajax Slider

2015-04-04 Thread Sebastien
Hi Chris,

I think it might be a version issue. wicket-jquery-ui is still based on
1.11.2 (seems I've missed 1.11.3 in February btw, strange)

If you are using a standard theme, maybe you don't have to download/use
jquery* file, you can just use a theme dependency, so the css file will be
rendered for you, matching the version of the underlying jquery-ui.js.

If you do not want to use a theme dependency, you need to get the theme
corresponding to the version on the jquery-ui site (somewhere in archive,
iirc). Or, if you want to use your own css/js version, please read this:
https://github.com/sebfz1/wicket-jquery-ui/wiki/%5Bhowto%5D-change-resource-references

In no case add jquery-ui.js by yourself (except through
JQueryUILibrarySettings) and please double check if jquery-ui.css  co are
well included and rendered (no 404) in your page.

Hope this helps,
Sebastien.


[ANNOUNCE] Wicket jQuery UI 7.0.0-M5 is released

2015-02-05 Thread Sebastien
Dear users,

Wicket jQuery UI 7.0.0-M5 based on Apache Wicket 7.0.0-M5 is released and
available in Maven Central.

Users upgrading from -M4 to -M5 can refers to 6.19.0's changelog
https://github.com/sebfz1/wicket-jquery-ui/wiki/%5Bchangelog%5D-wicket-jquery-ui-6.19.0

This release includes some new Kendo UI widget integrations as well as an
upgrade to fullcalendar v2 (wicket-jquery-ui-calendar). A big thanks to
Maxim Solodovnik for this migration!

Maven dependencies

Wicket jQuery UI
dependency
groupIdcom.googlecode.wicket-jquery-ui/groupId
artifactIdwicket-jquery-ui/artifactId
version7.0.0-M5/version
/dependency

Wicket Kendo UI
dependency
groupIdcom.googlecode.wicket-jquery-ui/groupId
artifactIdwicket-kendo-ui/artifactId
version7.0.0-M5/version
/dependency

Non Maven users can download the jars manually from here
http://central.maven.org/maven2/com/googlecode/wicket-jquery-ui/

Have fun,
Sebastien


[ANNOUNCE] Wicket jQuery UI 6.19.0 is released

2015-02-05 Thread Sebastien
Dear users,

Wicket jQuery UI 6.19.0 based on Apache Wicket 6.19.0 is released and
available in Maven Central.

The changelog is available at the wiki page:
https://github.com/sebfz1/wicket-jquery-ui/wiki/%5Bchangelog%5D-wicket-jquery-ui-6.19.0

This release includes some new Kendo UI widget integrations as well as an
upgrade to fullcalendar v2 (wicket-jquery-ui-calendar). A big thanks to
Maxim Solodovnik for this migration!

Maven dependencies

Wicket jQuery UI
dependency
groupIdcom.googlecode.wicket-jquery-ui/groupId
artifactIdwicket-jquery-ui/artifactId
version6.19.0/version
/dependency

Wicket Kendo UI
dependency
groupIdcom.googlecode.wicket-jquery-ui/groupId
artifactIdwicket-kendo-ui/artifactId
version6.19.0/version
/dependency

Non Maven users can download the jars manually from here
http://central.maven.org/maven2/com/googlecode/wicket-jquery-ui/

Have fun,
Sebastien


Re: Wicket JQuery Selectable Sortable combined

2015-02-04 Thread Chris
Hi Sebastien,

how is it possible to call the #onRemove from the #onSelect method as the 
sortable is not created at that moment in order to remove the selected item?
@Override
public void onSelect(AjaxRequestTarget target, ListString items) {
info(selected  + items);
target.add(feedback);
}
br, Chris

 Am 02.02.2015 um 17:44 schrieb Sebastien seb...@gmail.com:
 
 Hi Chris,
 
 You're welcome!
 
 The list is already the Sortable's model object, if you are able to send
 the item hash, you are able to retrieve the item, then you just have to
 invoke
 Sortable#onRemove(target, item) [1] and this should be all fine...
 
 Hope this helps,
 Sebastien.
 
 [1]
 https://github.com/sebfz1/wicket-jquery-ui/blob/master/wicket-jquery-ui/src/main/java/com/googlecode/wicket/jquery/ui/interaction/sortable/Sortable.java#L151
 
 
 On Mon, Feb 2, 2015 at 2:22 PM, Chris chris...@gmx.at wrote:
 
 Hi Sebastien,
 
 
 thanks a lot for your example, it works fine!
 One question remains: how is it possible to add the ListModel as Ajax
 target so that when I delete a selected element, the displayed elements are
 updated?
 
 @Override
 public void onSelect(AjaxRequestTarget target, ListString items) {
info(selected  + items);
target.add(feedback);
 }
 Thanks a lot,
 Chris
 



Re: Wicket JQuery Selectable Sortable combined

2015-02-02 Thread Chris
Hi Sebastien,


thanks a lot for your example, it works fine!
One question remains: how is it possible to add the ListModel as Ajax target so 
that when I delete a selected element, the displayed elements are updated? 

@Override
public void onSelect(AjaxRequestTarget target, ListString items) {
info(selected  + items);
target.add(feedback);
}
Thanks a lot,
Chris

 Am 01.02.2015 um 17:58 schrieb Sebastien seb...@gmail.com:
 
 Hi Chris,
 
 Please find hereafter the link to the sample:
 http://www.7thweb.net/wicket-jquery-ui/sortable/SelectableSortablePage
 
 Best regards,
 Sebastien.



Re: Wicket JQuery Selectable Sortable combined

2015-02-02 Thread Sebastien
Hi Chris,

You're welcome!

The list is already the Sortable's model object, if you are able to send
the item hash, you are able to retrieve the item, then you just have to
invoke
Sortable#onRemove(target, item) [1] and this should be all fine...

Hope this helps,
Sebastien.

[1]
https://github.com/sebfz1/wicket-jquery-ui/blob/master/wicket-jquery-ui/src/main/java/com/googlecode/wicket/jquery/ui/interaction/sortable/Sortable.java#L151


On Mon, Feb 2, 2015 at 2:22 PM, Chris chris...@gmx.at wrote:

 Hi Sebastien,


 thanks a lot for your example, it works fine!
 One question remains: how is it possible to add the ListModel as Ajax
 target so that when I delete a selected element, the displayed elements are
 updated?

 @Override
 public void onSelect(AjaxRequestTarget target, ListString items) {
 info(selected  + items);
 target.add(feedback);
 }
 Thanks a lot,
 Chris



Re: Wicket JQuery Selectable Sortable combined

2015-02-01 Thread Sebastien
Hi,

 How is it possible to receive those click events so that I know which
list elements has been selected by the user?

Each list (html) item has a 'data-hash' attribute that corresponds to each
list (java) hashcode. So you can send it with your button and get the
selected item (java) back. You can look at SortableBehavior for
inspiration.
That said, in my opinion, there could be an easier way: as you want to add
the selectable behavior to the sortable list, can't you figure out to have
an external 'delete' button that would delete previously-selected item?

 Is there a way to combine it with the Selectable approach

Yes, there is. I will add a sample page with this because it is
straightforward... only when we know it!
What you need is to define the 'handler' option to the sortable (it will be
the zone where sorting will be available).

The html looks like:

ul wicket:id=sortable class=sortable
li wicket:id=items
span wicket:id=icon class=*handle*[icon]/span
span wicket:id=item class=item[label]/span
/li
/ul

The java looks like:

final ListString list = newList(item #1, item #2, item #3, item
#4, item #5, item #6);

final SortableString sortable = new SortableString(sortable, list,
new Options(handle, Options.asString(.*handle*))) {

@Override
protected void onInitialize()
{
super.onInitialize();

   this.add(new
SelectableBehaviorString(JQueryWidget.getSelector(this), new
Options(cancel, Options.asString(.*handle*))) {

@Override
protected String getItemSelector()
{
return li;
}

@Override
protected ListString getItemList()
{
return list;
}

@Override
public void onSelect(AjaxRequestTarget target, ListString
items)
{
info(selected  + items);

target.add(feedback);
}
});
}

/* ... */
};

this.add(sortable);


I will update this thread when the sample page will be online...

Hope this help,
Sebastien.


On Sun, Feb 1, 2015 at 1:43 PM, Chris chris...@gmx.at wrote:

 Hi all,

 the Wicket - jQuery UI Api shows an example of a sortable List view:
 http://www.7thweb.net/wicket-jquery-ui/sortable/DefaultSortablePage?6 
 http://www.7thweb.net/wicket-jquery-ui/sortable/DefaultSortablePage?6

 I would not only like to sort a list, but to delete single elements within
 the list by clicking on a button, see for example:

 ul wicket:id=sortable class=sortable
 li wicket:id=items
 span wicket:id=item class=item[label]/span
 img wicket:id=deleteButton/
 /li
 /ul

 How is it possible to receive those click events so that I know which list
 elements has been selected by the user? Is there a way to combine it with
 the Selectable approach, see
 http://www.7thweb.net/wicket-jquery-ui/selectable/DefaultSelectablePage?7
 http://www.7thweb.net/wicket-jquery-ui/selectable/DefaultSelectablePage?7
 ?

 Thanks a lot, Chris


Wicket JQuery Selectable Sortable combined

2015-02-01 Thread Chris
Hi all,

the Wicket - jQuery UI Api shows an example of a sortable List view: 
http://www.7thweb.net/wicket-jquery-ui/sortable/DefaultSortablePage?6 
http://www.7thweb.net/wicket-jquery-ui/sortable/DefaultSortablePage?6

I would not only like to sort a list, but to delete single elements within the 
list by clicking on a button, see for example:

ul wicket:id=sortable class=sortable
li wicket:id=items
span wicket:id=item class=item[label]/span
img wicket:id=deleteButton/
/li
/ul

How is it possible to receive those click events so that I know which list 
elements has been selected by the user? Is there a way to combine it with the 
Selectable approach, see 
http://www.7thweb.net/wicket-jquery-ui/selectable/DefaultSelectablePage?7 
http://www.7thweb.net/wicket-jquery-ui/selectable/DefaultSelectablePage?7 ?

Thanks a lot, Chris

Re: Wicket JQuery Selectable Sortable combined

2015-02-01 Thread Sebastien
Hi Chris,

Please find hereafter the link to the sample:
http://www.7thweb.net/wicket-jquery-ui/sortable/SelectableSortablePage

Best regards,
Sebastien.


Re: Wicket jQuery js loaded twice when modal window opened

2014-11-14 Thread prasad.bhandagi
Yes, the anticache parameter was being added by jQuery as I was trying to get
the content for new page in modal window using jQuery ajax get. 
I will load the new page in modal window using iframe to avoid the
javascript of new page affecting the page in parent window, to resolve the
issue.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-jQuery-js-loaded-twice-when-modal-window-opened-tp4668156p4668417.html
Sent from the Users forum mailing list archive at Nabble.com.

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



Re: Wicket jQuery js loaded twice when modal window opened

2014-10-30 Thread Martin Grigorov
@Maxim,

It seems you didn't read the message till the end. It says that it uses
JQuery UI Dialog.

@Prasad: Wicket filters out any JS or CSS resource at the client side if it
is already loaded. I.e. The server may contribute script
src=.../jquery.js but while processing the Ajax response
(ajax-response XML element) wicket-ajax-jquery.js will take the value of
the src attribute and check whether there is another script element in
the document with the same url. If there is then the contribution is
ignored.
Please check whether the urls are same.

Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Thu, Oct 30, 2014 at 5:09 AM, Maxim Solodovnik solomax...@gmail.com
wrote:

 I believe this is because you are using ModalWindow with page, Maybe you
 better use it with panel?
 Or use dialog from wicket-jqueryui:
 http://www.7thweb.net/wicket-jquery-ui/dialog/MessageDialogPage ?

 On 30 October 2014 06:08, prasad.bhandagi prasad.bhand...@marsh.com
 wrote:

  I have a Wicket v6 page with couple of AjaxButtons. When the AjaxButton
 is
  clicked, am opening a modal window using jQuery ui Dialog passing the URL
  of
  a second page. The second wicket page also has a AjaxButton. When wicket
  fetches the second page using Ajax to be rendered in the modal window, it
  loads jQuery js again.
 
  I think this causes issues and it gives me error subsequently
  jQuery(...).dialog is not a function.
 
  Is there a way I can tell Wicket to NOT to load the jQuery js when
  rendering
  the page in the modal window? Wicket Ajax components automatically add
  jQuery reference always. Am looking for a way to remove the jQuery
  reference
  before the page is rendered.
 
  Note: I am not using the Wicket extension for Modal Window. Am using
 jQuery
  UI Dialog directly to open modal window. But I think the problem of
 jQuery
  getting loaded again will occur when Modal Window used also.
 
  --
  View this message in context:
 
 http://apache-wicket.1842946.n4.nabble.com/Wicket-jQuery-js-loaded-twice-when-modal-window-opened-tp4668156.html
  Sent from the Users forum mailing list archive at Nabble.com.
 
  -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
  For additional commands, e-mail: users-h...@wicket.apache.org
 
 


 --
 WBR
 Maxim aka solomax



Re: Wicket jQuery js loaded twice when modal window opened

2014-10-30 Thread Maxim Solodovnik
My bad, sorry

On 30 October 2014 13:15, Martin Grigorov mgrigo...@apache.org wrote:

 @Maxim,

 It seems you didn't read the message till the end. It says that it uses
 JQuery UI Dialog.

 @Prasad: Wicket filters out any JS or CSS resource at the client side if it
 is already loaded. I.e. The server may contribute script
 src=.../jquery.js but while processing the Ajax response
 (ajax-response XML element) wicket-ajax-jquery.js will take the value of
 the src attribute and check whether there is another script element in
 the document with the same url. If there is then the contribution is
 ignored.
 Please check whether the urls are same.

 Martin Grigorov
 Wicket Training and Consulting
 https://twitter.com/mtgrigorov

 On Thu, Oct 30, 2014 at 5:09 AM, Maxim Solodovnik solomax...@gmail.com
 wrote:

  I believe this is because you are using ModalWindow with page, Maybe you
  better use it with panel?
  Or use dialog from wicket-jqueryui:
  http://www.7thweb.net/wicket-jquery-ui/dialog/MessageDialogPage ?
 
  On 30 October 2014 06:08, prasad.bhandagi prasad.bhand...@marsh.com
  wrote:
 
   I have a Wicket v6 page with couple of AjaxButtons. When the AjaxButton
  is
   clicked, am opening a modal window using jQuery ui Dialog passing the
 URL
   of
   a second page. The second wicket page also has a AjaxButton. When
 wicket
   fetches the second page using Ajax to be rendered in the modal window,
 it
   loads jQuery js again.
  
   I think this causes issues and it gives me error subsequently
   jQuery(...).dialog is not a function.
  
   Is there a way I can tell Wicket to NOT to load the jQuery js when
   rendering
   the page in the modal window? Wicket Ajax components automatically add
   jQuery reference always. Am looking for a way to remove the jQuery
   reference
   before the page is rendered.
  
   Note: I am not using the Wicket extension for Modal Window. Am using
  jQuery
   UI Dialog directly to open modal window. But I think the problem of
  jQuery
   getting loaded again will occur when Modal Window used also.
  
   --
   View this message in context:
  
 
 http://apache-wicket.1842946.n4.nabble.com/Wicket-jQuery-js-loaded-twice-when-modal-window-opened-tp4668156.html
   Sent from the Users forum mailing list archive at Nabble.com.
  
   -
   To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
   For additional commands, e-mail: users-h...@wicket.apache.org
  
  
 
 
  --
  WBR
  Maxim aka solomax
 




-- 
WBR
Maxim aka solomax


Re: Wicket jQuery js loaded twice when modal window opened

2014-10-30 Thread prasad.bhandagi
@Martin

When the first page is loaded, below is the url:
http://localhost:7001/ahc/prol/wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.10.1-ver-1372037384000.js

When the second page is loaded in modal window, below is the url:
http://localhost:7001/ahc/prol/wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.10.1-ver-1372037384000.js?_=1414675886491

Wicket for some reason is appending a query parameter the second time. Hence
it is loading jQuery again when the modal window is opened.
If the url was the same, Wicket client side filters would have not loaded
jQuery again as you said.
Any idea on why the _ query parameter is being appended the second time
and if it can be avoided?

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-jQuery-js-loaded-twice-when-modal-window-opened-tp4668156p4668168.html
Sent from the Users forum mailing list archive at Nabble.com.

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



Re: Wicket jQuery js loaded twice when modal window opened

2014-10-30 Thread Martin Grigorov
Hi,

The anti cache parameter is added by jQuery itself when $.ajax({cache:
false, ...}) - http://api.jquery.com/jquery.ajax/

ack-grep '_=' wicket-core/src/main/java/
wicket-core/src/main/java/org/apache/wicket/resource/jquery/jquery-1.11.1.js
8551: rts = /([?])_=[^]*/,
9105: cacheURL.replace( rts, $1_= + nonce++ ) :
9108: cacheURL + ( rquery.test( cacheURL ) ?  : ? ) + _= + nonce++;

wicket-ajax sets cache to false to avoid cached Ajax responses:
https://github.com/apache/wicket/blob/master/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js#L671

Can you reproduce this with a plain (i.e. no third party libs) Wicket
quickstart ?
If YES then please create a ticket and attach the quickstart.
Thanks!

Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Thu, Oct 30, 2014 at 3:35 PM, prasad.bhandagi prasad.bhand...@marsh.com
wrote:

 @Martin

 When the first page is loaded, below is the url:

 http://localhost:7001/ahc/prol/wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.10.1-ver-1372037384000.js

 When the second page is loaded in modal window, below is the url:

 http://localhost:7001/ahc/prol/wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.10.1-ver-1372037384000.js?_=1414675886491

 Wicket for some reason is appending a query parameter the second time.
 Hence
 it is loading jQuery again when the modal window is opened.
 If the url was the same, Wicket client side filters would have not loaded
 jQuery again as you said.
 Any idea on why the _ query parameter is being appended the second time
 and if it can be avoided?

 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Wicket-jQuery-js-loaded-twice-when-modal-window-opened-tp4668156p4668168.html
 Sent from the Users forum mailing list archive at Nabble.com.

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




Wicket jQuery js loaded twice when modal window opened

2014-10-29 Thread prasad.bhandagi
I have a Wicket v6 page with couple of AjaxButtons. When the AjaxButton is
clicked, am opening a modal window using jQuery ui Dialog passing the URL of
a second page. The second wicket page also has a AjaxButton. When wicket
fetches the second page using Ajax to be rendered in the modal window, it
loads jQuery js again.

I think this causes issues and it gives me error subsequently
jQuery(...).dialog is not a function.

Is there a way I can tell Wicket to NOT to load the jQuery js when rendering
the page in the modal window? Wicket Ajax components automatically add
jQuery reference always. Am looking for a way to remove the jQuery reference
before the page is rendered.

Note: I am not using the Wicket extension for Modal Window. Am using jQuery
UI Dialog directly to open modal window. But I think the problem of jQuery
getting loaded again will occur when Modal Window used also.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Wicket-jQuery-js-loaded-twice-when-modal-window-opened-tp4668156.html
Sent from the Users forum mailing list archive at Nabble.com.

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



Re: Wicket jQuery js loaded twice when modal window opened

2014-10-29 Thread Maxim Solodovnik
I believe this is because you are using ModalWindow with page, Maybe you
better use it with panel?
Or use dialog from wicket-jqueryui:
http://www.7thweb.net/wicket-jquery-ui/dialog/MessageDialogPage ?

On 30 October 2014 06:08, prasad.bhandagi prasad.bhand...@marsh.com wrote:

 I have a Wicket v6 page with couple of AjaxButtons. When the AjaxButton is
 clicked, am opening a modal window using jQuery ui Dialog passing the URL
 of
 a second page. The second wicket page also has a AjaxButton. When wicket
 fetches the second page using Ajax to be rendered in the modal window, it
 loads jQuery js again.

 I think this causes issues and it gives me error subsequently
 jQuery(...).dialog is not a function.

 Is there a way I can tell Wicket to NOT to load the jQuery js when
 rendering
 the page in the modal window? Wicket Ajax components automatically add
 jQuery reference always. Am looking for a way to remove the jQuery
 reference
 before the page is rendered.

 Note: I am not using the Wicket extension for Modal Window. Am using jQuery
 UI Dialog directly to open modal window. But I think the problem of jQuery
 getting loaded again will occur when Modal Window used also.

 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Wicket-jQuery-js-loaded-twice-when-modal-window-opened-tp4668156.html
 Sent from the Users forum mailing list archive at Nabble.com.

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




-- 
WBR
Maxim aka solomax


[ANNOUNCE] Wicket jQuery UI 6.17.0 is released

2014-09-05 Thread Sebastien
Dear all,

Wicket jQuery UI 6.17.0 based on Apache Wicket 6.17.0 and jQuery UI 1.11.1
is released and available in Maven Central.

It is highly recommended to read the changelog, which is available at the
wiki page:
https://github.com/sebfz1/wicket-jquery-ui/wiki/%5Bchangelog%5D-wicket-jquery-ui-6.17.0

This release includes a notable new feature: default themes. For both
wicket-jquery-ui and wicket-kendo-ui all default themes are available
through add-ons. One of the advantage is that you don't have to care about
css versions anymore. Please read the changelog for more information.

Maven dependency

dependency
groupIdcom.googlecode.wicket-jquery-ui/groupId
artifactIdwicket-jquery-ui/artifactId
version6.17.0/version
/dependency

Non Maven users can download the jars manually from here
http://central.maven.org/maven2/com/googlecode/wicket-jquery-ui/

Have fun,
Sebastien


[ANNOUNCE] Wicket jQuery UI 7.0.0-M3 is released

2014-09-05 Thread Sebastien
Dear all,

Wicket jQuery UI 7.0.0-M3 based on Apache Wicket 7.0.0-M3 and jQuery UI
1.11.1 is released and available in Maven Central.

This version is aligned with 6.17.0 in term of fixes and features.

Maven dependency

dependency
groupIdcom.googlecode.wicket-jquery-ui/groupId
artifactIdwicket-jquery-ui/artifactId
version7.0.0-M3/version
/dependency

Non Maven users can download the jars manually from here
http://central.maven.org/maven2/com/googlecode/wicket-jquery-ui/

Have fun,
Sebastien


Re: [ANNOUNCE] Wicket jQuery UI 6.17.0 is released

2014-09-05 Thread Maxim Solodovnik
Thanks!
will take a look and my code accordingly :)

Is this feature available for 7.0.0-M3 also?


On 5 September 2014 16:27, Sebastien seb...@gmail.com wrote:

 Dear all,

 Wicket jQuery UI 6.17.0 based on Apache Wicket 6.17.0 and jQuery UI 1.11.1
 is released and available in Maven Central.

 It is highly recommended to read the changelog, which is available at the
 wiki page:

 https://github.com/sebfz1/wicket-jquery-ui/wiki/%5Bchangelog%5D-wicket-jquery-ui-6.17.0

 This release includes a notable new feature: default themes. For both
 wicket-jquery-ui and wicket-kendo-ui all default themes are available
 through add-ons. One of the advantage is that you don't have to care about
 css versions anymore. Please read the changelog for more information.

 Maven dependency

 dependency
 groupIdcom.googlecode.wicket-jquery-ui/groupId
 artifactIdwicket-jquery-ui/artifactId
 version6.17.0/version
 /dependency

 Non Maven users can download the jars manually from here
 http://central.maven.org/maven2/com/googlecode/wicket-jquery-ui/

 Have fun,
 Sebastien




-- 
WBR
Maxim aka solomax


Re: [ANNOUNCE] Wicket jQuery UI 6.17.0 is released

2014-09-05 Thread Sebastien
Hi Maxim,

Yes, the theming feature is also available in 7.0.0-M3 :)

Best regards,
Sebastien

On Fri, Sep 5, 2014 at 11:31 AM, Maxim Solodovnik solomax...@gmail.com
wrote:

 Thanks!
 will take a look and my code accordingly :)

 Is this feature available for 7.0.0-M3 also?



Re: [ANNOUNCE] Wicket jQuery UI 6.17.0 is released

2014-09-05 Thread Maxim Solodovnik
Great!
Thanks a lot for this feature :)


On 5 September 2014 16:35, Sebastien seb...@gmail.com wrote:

 Hi Maxim,

 Yes, the theming feature is also available in 7.0.0-M3 :)

 Best regards,
 Sebastien

 On Fri, Sep 5, 2014 at 11:31 AM, Maxim Solodovnik solomax...@gmail.com
 wrote:

  Thanks!
  will take a look and my code accordingly :)
 
  Is this feature available for 7.0.0-M3 also?
 




-- 
WBR
Maxim aka solomax


  1   2   >