Re: Tools for Managing a Wicket Project

2009-04-29 Thread Florian Sperber
about: - svn (instead of cvs) - maven (check the quickstart project on the wicket page) - archiva (your own maven repository) - hudson (continous integration build system) Kind regards Florian Sperber - To unsubscribe, e-mail

Re: Hot deployment / code swapping

2008-09-10 Thread Florian Sperber
Hi, I use eclipse as a development environment and eclipse supports in the debug mode a fairly good hotreplace of changed java-code (not always but often enough :-)). Kind regards Florian Sperber pixologe schrieb: Thanks for your reply. The app is running in development mode and I did

Re: Wicket database access

2008-02-22 Thread Florian Sperber
should be forced to use an object-relational mapper. Please explain what you mean here. Wicket goes the Java-Way and so using objects for any data manipulation seems to be the right thing. Kind regards Florian Sperber

Re: Wicket database access

2008-02-22 Thread Florian Sperber
http://wicketstuff.org/wicket13/repeater Kind regards Florian Sperber wjser schrieb: i do know how to handle JDBC. The problem is that i don't know how to use JDBC inside Wicket. I think that i have to implement IDataProvider wich would fetch the data from the database, but i don't know how

Re: wicket + CMS

2008-01-16 Thread Florian Sperber
Hi Igor, have you seen: http://cocoondev.org/daisy/index.html ? Maybe their approach of keeping a repository could be interesting for you ;-) Kind regards Florian Sperber Igor Vaynberg schrieb: same way all the java apps do, svnkit.com :) -igor On Jan 16, 2008 11:01 PM, Martin Funk

Re: wicket File downlaod

2007-11-26 Thread Florian Sperber
Sometime ago this was answered on the list but i cannot find it right now :-) Maybe the following snippets will help you (it's wicket 1.2.6): WebResource export = new WebResource() { private static final long serialVersionUID = 1L; @Override public

Re: how to update a label on tree node selection

2007-11-23 Thread Florian Sperber
= newLabel target.addComponent(labelNode); } hope this helps :-) Kind regards, Florian Sperber rik rik schrieb: Hi to all! I'm starting to use wicket and I'm happy using it :-) But I'm not able to update a label on a tree node selection, my code is this Label labelNode=new Label

Re: Examples for AjaxLazyLoadPanel?

2007-10-16 Thread Florian Sperber
Did you look at http://www.wicketstuff.org/wicket13/ajax/lazy-loading.1 Kind regards, Florian Sperber SantiagoA schrieb: Hi, i am trying to use an AjaxLazyLoadPanel, but have some Problems to get it work. I have a page with a panel, which produces heavily loading action. I just want

Re: replace Panel inside a Form

2007-08-24 Thread Florian Sperber
Hi Benjamin, where is the Panel einsatzPanel defined? Maybe it helps defining it as a Class property? Kind regards Florian Sperber Benjamin Ernst wrote: Hi, I am trying to replace a Panel, which is inside a Form, which is inside a Page, which is inside a ModalWindow. The first time it works