Wicket-rest sample

2014-04-24 Thread Noven
Hi... Does anyone here have running example with wicket rest that explain using web services between 2 application ?  If yes, please share.. Thank you.

Re: Wicket-rest sample

2014-04-24 Thread Martin Grigorov
Hi, Please explain better what you want to achieve. Martin Grigorov Wicket Training and Consulting On Thu, Apr 24, 2014 at 10:34 AM, Noven noven_...@yahoo.com wrote: Hi... Does anyone here have running example with wicket rest that explain using web services between 2 application ? If

Wicket Message Dialog Behavior, close on click

2014-04-24 Thread Neha
Hi, I am using wicket message dialog box, which is a jquery ui widget dialog. I want to close the dialog box , when user clicks on confirm button. Even if the operation takes time, the dialog box must close. When I press Cancel dialog box closes immedialtely, but when I click confirm, and the

Re: Wicket-rest sample

2014-04-24 Thread Noven
Hi Martin, I am learning about wicket rest today. But I still confuse about how to serve the web service and to consume it. The goal is to have 2 wicket application that serve and consume the service.  If someone here is ever do this, I hope to see the code :) Regards, Noven On Thursday,

Wicket extensions - Data table component tag check

2014-04-24 Thread Timo Schmidt
Hi all, with the release of Wicket 6.15.0 I have discovered the following issue. The changes stated in WICKET-5534 has broken my main application. Since I'm providing an own markup file for my data table implementation to provide a scrollable table body with a fixed header, the component tag

Re: Wicket extensions - Data table component tag check

2014-04-24 Thread Martin Grigorov
Hi, You can workaround it with something like: @Override public void onComponentTag(ComponentTag tag) { tag.setName(table); super.onComponentTag(tag); tag.setName(div); ... } How exactly do you use this custom datatable ? We added the check because some users don't know very well HTML

Re: Wicket-rest sample

2014-04-24 Thread Martin Grigorov
Hi, Both https://github.com/wicketstuff/core/blob/master/jdk-1.7-parent/wicketstuff-restannotations-parent/readme.mdand http://wicket.apache.org/guide/guide/wicketstuff.html#wicketstuff_6 provide a lot of information how to setup the service.

Re: Wicket Message Dialog Behavior, close on click

2014-04-24 Thread Martin Grigorov
Hi, #onClose() is executed only when the Ajax request is processed at the server side. The JavaScript created with String js2 = this.getMarkupId() + .dialog('close'); target.appendJavaScript(js2); will be executed when the Ajax response is processed in the browser. To close the dialog

[ANNOUNCE] WicketStuff 6.15.0 is released

2014-04-24 Thread Martin Grigorov
Hi, WicketStuff core 6.15.0 based on Apache Wicket 6.15.0 is released and is available in Maven Central. The changelog for this release is: bitstorm (7): [tinymce] Removed workaround for WICKET-5248 [tinymce] Fixed TinyMCE 3 behavior to work inside modal window