Examples of TreeTable


Examples of org.apache.wicket.markup.html.tree.table.TreeTable

        new PropertyRenderableColumn(new ColumnLocation(Alignment.MIDDLE, 3,
            Unit.PROPORTIONAL), "M3", "userObject.property5"),
        new PropertyRenderableColumn(new ColumnLocation(Alignment.RIGHT, 8, Unit.EM), "R1",
            "userObject.property6"), };

    tree = new TreeTable("treeTable", createTreeModel(), columns);
    tree.getTreeState().setAllowSelectMultiple(true);
    add(tree);
    tree.getTreeState().collapseAll();
  }
View Full Code Here

Examples of org.jamesii.gui.utils.treetable.TreeTable

   *          the view's icon
   */
  public DefaultTreeTableView(String title, ITreeTableModel model,
      Contribution contribution, Icon icon) {
    super(title, icon, contribution);
    table = new TreeTable(model);
    table.setFillsViewportHeight(true);
    setTreeTableModel(model);
  }
View Full Code Here

Examples of org.openfaces.component.table.TreeTable

    }

    @Override
    public void setComponentProperties(FacesContext facesContext, UIComponent component) {
        super.setComponentProperties(facesContext, component);
        TreeTable treeTable = ((TreeTable) component);

        setStringProperty(component, "nodeLevelVar");
        setStringProperty(component, "nodePathVar");
        setStringProperty(component, "nodeHasChildrenVar");
        setIntProperty(component, "sortLevel");
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.