Re: quick CRUD application

2013-11-12 Thread saty
Ok, thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/quick-CRUD-application-tp4662346p4662350.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: user

Re: quick CRUD application

2013-11-12 Thread Josh Kamau
Look at isis.apache.org Josh On Wed, Nov 13, 2013 at 12:09 AM, saty wrote: > Hi, > > Is it possible to develop/generate a quick CRUD application using wicket, > something like the OpenXawa does or even JSF > > Thanks > > > > > -- > View this message in context: > http://apache-wicket.1842946.n

quick CRUD application

2013-11-12 Thread saty
Hi, Is it possible to develop/generate a quick CRUD application using wicket, something like the OpenXawa does or even JSF Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/quick-CRUD-application-tp4662346.html Sent from the Users forum mailing list archive a

Re: Wicket Components as Class Members

2013-11-12 Thread mashleyttu
Thank you everyone for your replies. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-Components-as-Class-Members-tp4662235p4662345.html Sent from the Users forum mailing list archive at Nabble.com. -

Re: wicket "library" example, but with tabs

2013-11-12 Thread meduolis
You have three different consructors for TabPanel1: 1. TabPanel1(BookDetails bookDetails); 2. TabPanel1(); 3. TabPanel1(BookDetails bookDetails, String id); If you create instance of that class using first constructor you don't have any component added yet. -- View this message in context: htt

wicket "library" example, but with tabs

2013-11-12 Thread Erik Ostermueller
Hello all, I'm trying to get the wicket "library" example (which is awesome) to display the BookDetails in a page with three tabs. But I'm a very new to wicket and could use some help. I've put a small-as-possible (well, almost) example app out here: https://github.com/eostermueller/wicket-tablib

Re: Wicket localization in stateful pages

2013-11-12 Thread meduolis
Those are screenshots taken from quickstart project I have provided: 1. (0 page version) We enter the page. Default locale is EN. Everything are localized in english because locale is correct for all components 2. (1 p

Re: Get return value of ajax event in Wicket 6.9.1

2013-11-12 Thread Daniela L
Hi, thank you so much for your help this works fantastic. I am so happy I was trying around with this for days :-) 2013/11/11 Martin Grigorov > respond() is the callback method that Wicket will notify. > But you need to trigger an Ajax call first. This is done with the Wicket > Ajax API: Wicket

Re: Wicket localization in stateful pages

2013-11-12 Thread Martin Grigorov
On Mon, Nov 11, 2013 at 7:02 PM, meduolis wrote: > Storing it in page will not work as it will reset each time I call > setResponsePage. > Storing it in data base will not work also, because locale will became > global for all visitors. > So I tried to pass it using page parameters. Also, I have