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;