Package org.mojavemvc.tests.views

Examples of org.mojavemvc.tests.views.HTMLForm


    }

    @Action("form2")
    public View form2() {
       
        return new HTMLForm()
            .withAction("form-controller/process2?p1=hello")
            .withTextInput("userName", "userName")
            .withPasswordInput();
    }
View Full Code Here


    }

    @Action("form3")
    public View form3() {
       
        return new HTMLForm()
            .withAction("form-controller/process3")
            .withTextInput("userName", "userName")
            .withPasswordInput();
    }
View Full Code Here

        SomeForm form = new SomeForm();
        form.setPassword("pswd");
        form.setUserName("uname");

        return new HTMLForm()
            .withAction("form-controller/process")
            .withTextInput("userName", "userName", "${userName}")
            .withPasswordInput("${password}")
            .withModel(form);
    }
View Full Code Here

    }

    @Action("form4")
    public View form4() {
       
        return new HTMLForm()
            .withAction("form-controller/process4")
            .withCheckboxInput("someFlag", true, "Flag");
    }
View Full Code Here

    }
   
    @Action("form5")
    public View form5() {
       
        return new HTMLForm()
            .withAction("form-controller/upload?p1=someVal")
            .withFileInput()
            .withTextInput("userName", "userName");
    }
View Full Code Here

    }

    @DefaultAction
    public View someDefaultAction() {

        return new HTMLForm()
            .withAction("form-controller/process")
            .withTextInput("userName", "userName", "${userName}")
            .withPasswordInput("${password}");
    }
View Full Code Here

TOP

Related Classes of org.mojavemvc.tests.views.HTMLForm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.