Package org.brixcms.plugin.menu.tile

Examples of org.brixcms.plugin.menu.tile.MenuPicker


    private MenuContainer currentEntry = new MenuContainer();

    public MenuTileEditor(String id, IModel<BrixNode> containerNode) {
        super(id, containerNode);

        add(new MenuPicker("menuPicker",
                new PropertyModel<BrixNode>(currentEntry, "menuNode"), containerNode));

        Form<MenuContainer> form;
        add(form = new Form<MenuContainer>("form", new CompoundPropertyModel<MenuContainer>(
                new PropertyModel<MenuContainer>(this, "currentEntry"))));
View Full Code Here


    private String outerUlCssClass;
    private String innerUlCssClass;

    public FullTreeMenuEditor(String id, IModel<BrixNode> tileParent) {
        super(id);
        add(new MenuPicker("menuPicker", menu, tileParent));
        Form<?> form = new Form<Void>("form");
        add(form);
        form.add(new TextField<String>("selectedLiCssClass", new PropertyModel<String>(this,
                "selectedLiCssClass")));
        form.add(new CheckBox("selectAllParentLi", new PropertyModel<Boolean>(this,
View Full Code Here

TOP

Related Classes of org.brixcms.plugin.menu.tile.MenuPicker

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.