Package org.brixcms.web.nodepage

Examples of org.brixcms.web.nodepage.PageParametersForm


         * Brix's variant of Wicket's StatelessForm that works with PageParametersAware interface.
         * Also notice that we do not update the value variable inside the onsubmit method, this
         * form will submit and immediately redirect to a url with submitted form values appended
         * into it to keep the url looking clean.
         */
        Form<?> form = new PageParametersForm("form");
        add(form);

        // symbol text field
        form.add(new TextField<String>("symbol", new PropertyModel(this, "symbol")));
    }
View Full Code Here

TOP

Related Classes of org.brixcms.web.nodepage.PageParametersForm

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.