Esempio n. 1
0
 private void buildcomponentLookupGrid() {
   ListStore<DeployedComponent> store = new ListStore<DeployedComponent>();
   grid = new Grid<DeployedComponent>(store, buildColumnModel());
   grid.setAutoExpandColumn("name"); // $NON-NLS-1$
   grid.addPlugin(expander);
   grid.getView().setEmptyText(I18N.DISPLAY.noComponents());
   grid.setBorders(false);
   grid.setStripeRows(true);
   grid.setColumnLines(true);
   grid.getStore().setStoreSorter(new DeployedComponentSorter());
 }