Re: Large forms

2015-02-23 Thread Tobias Soloschenko
Every code provided by the community helps the community, so it would be great to see it on Github. :-) Thank you. kind regards Tobias > Am 24.02.2015 um 08:10 schrieb Vit Rozkovec : > > I have solved it by creating a code generator, that for each POJO passed, > it makes physical html, java a

Re: Large forms

2015-02-23 Thread Vit Rozkovec
I have solved it by creating a code generator, that for each POJO passed, it makes physical html, java and properties files at given package path. According to the template you pass to the generator, it can generate any code for you. Drawbacks Once generated, there is no link between POJO and

Re: Wicket page test 3.0.0 is now available (for Wicket 6.x)

2015-02-23 Thread Tobias Soloschenko
Thanks for sharing the information! kind regards Tobias > Am 24.02.2015 um 07:08 schrieb Kent Tong : > > Dear all, > > Wicket page test 3.0.0 is now available. It now works with Wicket 6.x and > Selenium 2. It is a library allowing you to unit test your Wicket pages > easily, supporting AJAX a

Wicket page test 3.0.0 is now available (for Wicket 6.x)

2015-02-23 Thread Kent Tong
Dear all, Wicket page test 3.0.0 is now available. It now works with Wicket 6.x and Selenium 2. It is a library allowing you to unit test your Wicket pages easily, supporting AJAX and Javascript without changes to your pages. It's available from maven central. Check out the tutorial at http://wic

wicket atmosphere broadcast to all except for orign page

2015-02-23 Thread fachhoch
I am trying to use wicket atmosphere, I want to broadcast msg for all the resources except for the one which broadcasted the msg, please advice how to exclude a resource . In a page on click of a link I call Event.get().post and this same page has a public method with @org.apach

Re: Large forms

2015-02-23 Thread Martin Grigorov
Hi, You may take a look at Apache Isis as an more sophisticated alternative of WicketRAD and WicketBeans. It provides out of the box both Wicket viewer and RESTful (JAX-RS) viewer for your entities. The drawback is that it uses JDO/DataNucleus as ORM. DataNucleus is better

Re: Large forms

2015-02-23 Thread Filipe Roque
We have developed something like this at our company, and open sourced it a few months ago. Take a look at https://github.com/premium-minds/wicket-crudifier Sorry, but we have yet to provide proper documentation and examples. There is, as of today, an example here https://github.com/froque/wic

Re: Large forms

2015-02-23 Thread ChambreNoire
Yes I'm aware of WicketRAD and WicketBeans but both projects appear to have been abandonned. I take it there's nothing more recent? I'll have to implement something myself (and these two projects will certainly be useful for inspiration). Thanks CN -- View this message in context: http://apache

Re: Large forms

2015-02-23 Thread Sven Meier
Hi, read here for a start: http://stackoverflow.com/questions/12120256/generate-html-from-java-beans-at-compile-time Have fun Sven On 23.02.2015 17:10, ChambreNoire wrote: Hey there, In the case of large forms with 20+ fields, how should one go about coding the wicket components? I have a la

Large forms

2015-02-23 Thread ChambreNoire
Hey there, In the case of large forms with 20+ fields, how should one go about coding the wicket components? I have a large form of over 300 fields divided into 20 pages to code. Instantiating and wiring up each of these one by one would take an age. Any ideas? Many thanks, CN -- View this me