Examples of PathLabel


Examples of org.brixcms.web.util.PathLabel

public class NodeManagerEditorPanel extends BrixGenericPanel<BrixNode> {
    public NodeManagerEditorPanel(String id, IModel<BrixNode> model) {
        super(id, model);

        String root = SitePlugin.get().getSiteRootPath();
        add(new PathLabel("path2", model, root) {
            @Override
            protected void onPathClicked(Path path) {
                BrixNode node = (BrixNode) getNode().getSession().getItem(path.toString());
                selectNode(node, false);
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.