basic problem of using wicket

2009-12-06 Thread maven apache
Hi: I have reffered the wicket wiki and the faq but some problem still exist.So I ask for help. 1) the page jump. For example in a user login page, after the submit button are clicked I want user jump to success page or error page. So how to ? In my login page: public class LoginPage extends

Re: Location of html files

2009-12-05 Thread maven apache
http://cwiki.apache.org/WICKET/control-where-html-files-are-loaded-from.html http://cwiki.apache.org/WICKET/control-where-html-files-are-loaded-from.htmlSee the above page. Also I think it is a little complex for costuming the location of resources. 2009/12/6 Johan den Boer

the version of wicket1.4 and 1.3

2009-11-18 Thread maven apache
I create a class Loginpage which extends WebPage,how the IDE show me many errors when I use wicket 1.4 : public LoginPage() { User user = new User(); Form logForm = new Form(form, new CompoundPropertyModel(user)) { protected void onSubmit() { } }; logForm.setMultiPart(true);

Re: the version of wicket1.4 and 1.3

2009-11-18 Thread maven apache
2009/11/18 Igor Vaynberg igor.vaynb...@gmail.com you need to tweak your ide to enable java5 functionality i think. In fact The jre library I add is jdk1.6 -igor On Wed, Nov 18, 2009 at 5:26 AM, maven apache apachemav...@gmail.com wrote: I create a class Loginpage which extends WebPage

Re: the version of wicket1.4 and 1.3

2009-11-18 Thread maven apache
AM, maven apache apachemav...@gmail.com wrote: I create a class Loginpage which extends WebPage,how the IDE show me many errors when I use wicket 1.4 : public LoginPage() { User user = new User(); Form logForm = new Form(form, new CompoundPropertyModel(user)) { protected

web projct of wicket can be changed to swing?

2009-11-17 Thread maven apache
Hi: There is a web project which uses the wicket framework as present tier ,can I change them to swing?