From a2c9ef33f6f9c45ee4e281a53dc5bc28ae1458cb Mon Sep 17 00:00:00 2001 From: Francesco Mangiacrapa Date: Wed, 4 Sep 2013 09:27:38 +0000 Subject: [PATCH] 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 --- .../client/view/grids/GxtGridFilterGroupPanel.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/gcube/portlets/user/workspace/client/view/grids/GxtGridFilterGroupPanel.java b/src/main/java/org/gcube/portlets/user/workspace/client/view/grids/GxtGridFilterGroupPanel.java index ce61508..2592909 100644 --- a/src/main/java/org/gcube/portlets/user/workspace/client/view/grids/GxtGridFilterGroupPanel.java +++ b/src/main/java/org/gcube/portlets/user/workspace/client/view/grids/GxtGridFilterGroupPanel.java @@ -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;