Re: Wicketstuff REST-Annotations: error handling impossible?

2015-02-24 Thread andrea del bene
That's a simple but yet very useful improvement! I will commit it ASAP. Thank you. Andrea. Hi everybody, We are using the Wicketstuff REST-Annotations and we are very happy with it. Thank you very much :-) We have a small thingy however for which I would like to propose a minor change in the

Re: wicket atmosphere broadcast to all except for orign page

2015-02-24 Thread Emond Papegaaij
The @Subscribe annotation has 2 filter options. In this case, I would go for the first: 'filter()'. The Predicate type you need to specify gets an AtmosphereEvent, where the payload is set to the object you are broadcasted. If you change this object to a little more than just a message, you can

AW: Wicketstuff REST-Annotations: error handling impossible?

2015-02-24 Thread Hans Lesmeister
Hi Andrea, thank you for your quick response. Great to hear that the change will be committed :-) Regards, Hans -Ursprüngliche Nachricht- Von: andrea del bene [mailto:an.delb...@gmail.com] Gesendet: Dienstag, 24. Februar 2015 11:02 An: users@wicket.apache.org Betreff: Re: Wicketstuff

Wicketstuff REST-Annotations: error handling impossible?

2015-02-24 Thread Hans Lesmeister
Hi everybody, We are using the Wicketstuff REST-Annotations and we are very happy with it. Thank you very much :-) We have a small thingy however for which I would like to propose a minor change in the code. It is about the fact that it is very hard, if not impossible, to customize error

Re: how do I make an iOS-like slide switch using apache wicket?

2015-02-24 Thread Ernesto Reinaldo Barreiro
Thanks for your answer! On Tue, Feb 24, 2015 at 1:36 PM, Martin Grigorov mgrigo...@apache.org wrote: Hi Ernesto, No. There is no component for this yet. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Feb 24, 2015 at 2:13 PM, Ernesto Reinaldo

Re: how do I make an iOS-like slide switch using apache wicket?

2015-02-24 Thread Matt Darwin
Hi, The image can be found here: http://i.stack.imgur.com/2oS1Z.png it’s just a screenshot of an iOS slide switch. Your answer looks good - so I can just write them as checkbox and let the clever javascript do the rest? Brilliant. I will look into it Matt On 24 Feb 2015, at 11:03, Martin

how do I make an iOS-like slide switch using apache wicket?

2015-02-24 Thread Matt Darwin
Hi, I have a wicket webapp and I would like to add a panel with some slide switches to control functionality, like this: I can't find any examples of how this can be done in wicket - can anybody suggest anything? NB I need to use ajax to send API calls to the server when the user changes

Re: Wicketstuff REST-Annotations: error handling impossible?

2015-02-24 Thread Maxim Solodovnik
Hello, have missed this useful component somehow Is there any way to get wsdl? and wadl? On Tue, Feb 24, 2015 at 4:20 PM, Hans Lesmeister hans.lesmeis...@lessy-software.de wrote: Hi Andrea, thank you for your quick response. Great to hear that the change will be committed :-) Regards,

Re: how do I make an iOS-like slide switch using apache wicket?

2015-02-24 Thread Ernesto Reinaldo Barreiro
@Martin, Off topic: is this widget already integrated into wicket bootstrap? On Tue, Feb 24, 2015 at 12:07 PM, Matt Darwin mattdar...@gmail.com wrote: Hi, The image can be found here: http://i.stack.imgur.com/2oS1Z.png it’s just a screenshot of an iOS slide switch. Your answer looks

Re: how do I make an iOS-like slide switch using apache wicket?

2015-02-24 Thread Martin Grigorov
Hi Ernesto, No. There is no component for this yet. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Feb 24, 2015 at 2:13 PM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: @Martin, Off topic: is this widget already integrated into wicket

Re: how do I make an iOS-like slide switch using apache wicket?

2015-02-24 Thread Martin Grigorov
Hi, Your attachment didn't make it to the mailing list. It would be better to upload it somewhere. You can use any JS/CSS solution and just integrate it with Wicket to send the Ajax call when the value changes. Here is one such JS solution: http://www.bootstrap-switch.org/ Martin Grigorov

Re: Wicketstuff REST-Annotations: error handling impossible?

2015-02-24 Thread andrea del bene
Not at the moment. But it's a nice idea for future improvements :) Hello, have missed this useful component somehow Is there any way to get wsdl? and wadl? On Tue, Feb 24, 2015 at 4:20 PM, Hans Lesmeister hans.lesmeis...@lessy-software.de wrote: Hi Andrea, thank you for your quick

Re: Wicketstuff REST-Annotations: error handling impossible?

2015-02-24 Thread Maxim Solodovnik
I have created issue [1] to record the idea [1] https://github.com/wicketstuff/core/issues/385 On Tue, Feb 24, 2015 at 9:10 PM, andrea del bene an.delb...@gmail.com wrote: Not at the moment. But it's a nice idea for future improvements :) Hello, have missed this useful component somehow

Re: Large forms

2015-02-24 Thread ChambreNoire
Many thanks for all the options! Since I'm on the subject of large forms, I was wondering what you opinion of appropriate class / db design is for such cases (300+ fields)? I was thinking of splitting the form into a number of sub-forms each with its own entity / table. The main issue with this