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 not

Re: Show/hide WebMarkupContainer

2008-09-03 Thread Florian Sperber
container.replaceWith(showPanel); container = showPanel; } } else { container.replaceWith(editPanel); container = editPanel; } target.addCom

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'

Re: Wicket database access

2008-02-22 Thread Florian Sperber
database access > and a no developer 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 + 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: Retrieving TextField and TextArea text on submit

2007-12-18 Thread Florian Sperber
Hi, use setModel(new CompoundPropertyModel(MyForm.this)); in your form constructor. this automatically sets the submitted data to the corresponding properties http://www.wicketstuff.org/wicket13/forminput/ has greate examples to study. Kind regards, Florian Sperber mbelarbi schrieb: I

AjaxEditableChoiceLabel uses a MultilineLabel (instead of maybe a Label?)

2007-12-09 Thread Florian Sperber
value (this is not really a problem, i changed the behaviour for myself already). But I think that using just a Label would be better, since it uses .. tags. Is there a special reason why a MultiLineLabel is used here? Kind regards, Florian Sperber -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.7

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 IResourceStre

Re: how to update a label on tree node selection

2007-11-23 Thread Florian Sperber
= 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("lab

Re: Configuring AJAX tree

2007-10-24 Thread Florian Sperber
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 It's been some time, but i believe it's enough to use css like this: tree component goes here Sorry if i rember that incorrectly but at least it's worth a try :-) Kind regards, Florian Sperber David Struck schrieb: >

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 the

Re: First Day Disgust!

2007-09-09 Thread Florian Sperber
t has already proven, if politely asked most problems are solved in "minutes". Kind regards, Florian Sperber P.S. The purpose of this mail is mainly to show that some people still DO LIKE your work ;-) -BEGIN PGP SIGNATURE-

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