Package de.iritgo.aktario.core.gui

Examples of de.iritgo.aktario.core.gui.ITableColumn


      props.setProperty("command", "aktera-client.showEmbeddedAddress");
      props.setProperty("name", "showEmbeddedAddress");
      CommandTools.performSimple("aktario-xmlrpc.AddXmlRpcCommand", props);

      addAddressTableColumn(new ITableColumn().withTitle("id"));
      addAddressTableColumn(new ITableColumn().withTitle("name"));
      addAddressTableColumn(new ITableColumn().withTitle("firstName"));
      addAddressTableColumn(new ITableColumn().withTitle("company"));
      addAddressTableColumn(new AddressViewColumn());
      addAddressTableColumn(new AddressActionColumn());

      addAddressTableActionMenuItemProvider(new IMenuItemProvider()
      {
View Full Code Here


      addressTable.addMouseListener(new AddressTableMouseListener());

      for (int i : new IntRange(0, columns.size() - 1))
      {
        ITableColumn c = columns.get(i);

        if (StringTools.isTrimEmpty(c.getTitle().get()))
        {
          if (c.getCellIcon() != null)
          {
            addressTable.getColumnModel().getColumn(i).setMinWidth(c.getCellIcon().getIconWidth() + 4);
            addressTable.getColumnModel().getColumn(i).setMaxWidth(c.getCellIcon().getIconWidth() + 4);
          }
          else
          {
            addressTable.getColumnModel().getColumn(i).setMinWidth(4);
            addressTable.getColumnModel().getColumn(i).setMaxWidth(4);
View Full Code Here

TOP

Related Classes of de.iritgo.aktario.core.gui.ITableColumn

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.