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);
}