Wicket rest annotations - introduction

2018-01-26 Thread mscoon
Hi all, We are considering using wicket rest annotations for extending a large existing application with a small (for now at least) rest api. Could you share your opinions on the state of the rest annotations project and also any pointers to examples and documentation? Thank you in advance Mario

Re: Wicket rest annotations - introduction

2018-01-26 Thread Maxim Solodovnik
This might be good point to start: https://github.com/wicketstuff/core/tree/master/wicketstuff-restannotations-parent On Fri, Jan 26, 2018 at 4:54 PM, mscoon wrote: > Hi all, > > We are considering using wicket rest annotations for extending a large > existing application with a small (for now a

Re: AjaxFormSubmitBehavior need timeout event

2018-01-26 Thread Martin Grigorov
Hi, You can use the failure callback for non-200 responses. I am not sure whether jQuery calls them for timeouts too. jQuery 3.3.0+ just added specific callback for timeouts ( http://blog.jquery.com/2018/01/19/jquery-3-3-0-a-fragrant-bouquet-of-deprecations-and-is-that-a-new-feature/, "Add an onti

Re: What should I use to perform the crawler test?

2018-01-26 Thread Gabriel Landon
Hi Sokab, I usually use Selenium with a "By" class using the wicketPath. Here's the code I use : WicketBy.java Regards, Gabriel -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html --

Re: the choices is key instead of value when using DropDownChoice component

2018-01-26 Thread Sven Meier
IModel> choices = new AbstractReadOnlyModel> {     public List getObject() {     List selectionDescription = new ArrayList(); selectionDescription.add(getString("forms.cf37.question8.oneTime")); selectionDescription.add(getString("forms.cf37.question8.otherSourcemonthly"));     return s