owner position in the grid is changed

git-svn-id: http://svn.d4science-ii.research-infrastructures.eu/gcube/trunk/portlets/user/workspace@81041 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2013-09-04 09:27:38 +00:00
parent 8c162da279
commit a2c9ef33f6
1 changed files with 3 additions and 3 deletions

View File

@ -70,16 +70,16 @@ public class GxtGridFilterGroupPanel extends LayoutContainer {
ColumnConfig creationDate = new ColumnConfig(ConstantsExplorer.GRIDCOLUMNCREATIONDATE, ConstantsExplorer.GRIDCOLUMNCREATIONDATE, 100);
ColumnConfig category = new ColumnConfig(ConstantsExplorer.SHORTCUTCATEGORY, ConstantsExplorer.SHORTCUTCATEGORY, 100);
ColumnConfig size = new ColumnConfig(ConstantsExplorer.SIZE, ConstantsExplorer.SIZE, 50);
ColumnConfig ownerFullName = new ColumnConfig(ConstantsExplorer.OWNERFULLNAME, ConstantsExplorer.OWNER, 80);
ColumnConfig ownerFullName = new ColumnConfig(ConstantsExplorer.OWNERFULLNAME, ConstantsExplorer.OWNER, 100);
size.setEditor(new CellEditor(new NumberField()));
ColumnModel cm = null;
if(group)
cm = new ColumnModel(Arrays.asList(icon, name, type, creationDate, size, ownerFullName, category));
cm = new ColumnModel(Arrays.asList(icon, name, ownerFullName, type, creationDate, size, category));
else
cm = new ColumnModel(Arrays.asList(icon, name, type, creationDate, size, ownerFullName));
cm = new ColumnModel(Arrays.asList(icon, name, ownerFullName, type, creationDate, size, ownerFullName));
final ColumnModel columnModel = cm;