Package org.brixcms.plugin.menu.editor

Examples of org.brixcms.plugin.menu.editor.MenuEditor


            Form<Menu> form = new Form<Menu>("form", new CompoundPropertyModel<Menu>(model));
            add(form);

            form.add(new TextField<String>("name").setRequired(true));

            form.add(new MenuEditor("editor", model));

            form.add(new SubmitLink("save") {
                @Override
                public void onSubmit() {
                    MenuPlugin plugin = MenuPlugin.get();
View Full Code Here

TOP

Related Classes of org.brixcms.plugin.menu.editor.MenuEditor

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.