Updated Flows

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-codelistmapping-import-widget@100976 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-10-24 15:51:34 +00:00
parent 7654fe7aa0
commit 75aabd0b98
3 changed files with 7 additions and 4 deletions

View File

@ -13,7 +13,7 @@ import com.google.web.bindery.event.shared.EventBus;
*
*/
public class CodelistMappingImportWizardTD extends WizardWindow {
protected static final int WITHWIZARD=720;
protected static final int WITHWIZARD=800;
protected static final int HEIGHTWIZARD=520;
protected CodelistMappingSession codelistMappingSession;

View File

@ -19,6 +19,7 @@ public interface TabResourcesProperties extends PropertyAccess<TabResource> {
ModelKeyProvider<TabResource> id();
ValueProvider<TabResource, String> name();
ValueProvider<TabResource, String> tabResourceType();
ValueProvider<TabResource, String> agency();
ValueProvider<TabResource, String> date();
ValueProvider<TabResource, String> tableTypeName();

View File

@ -68,13 +68,15 @@ public class TabResourcesSelectionPanel extends ContentPanel implements
protected static final ColumnConfig<TabResource, String> nameColumn = new ColumnConfig<TabResource, String>(
properties.name(), 90, "Name");
protected static final ColumnConfig<TabResource, String> typeColumn = new ColumnConfig<TabResource, String>(
properties.tabResourceType(), 30, "Type");
protected static final ColumnConfig<TabResource, String> tableTypeNameColumn = new ColumnConfig<TabResource, String>(
properties.tableTypeName(), 30, "Table Type");
protected static final ColumnConfig<TabResource, String> agencyColumn = new ColumnConfig<TabResource, String>(
properties.agency(), 60, "Agency");
protected static final ColumnConfig<TabResource, String> ownerColumn = new ColumnConfig<TabResource, String>(
properties.ownerLogin(), 70, "Owner");
protected static final ColumnConfig<TabResource, String> dateColumn = new ColumnConfig<TabResource, String>(
properties.date(), 40, "Date");
properties.date(), 50, "Date");
protected Grid<TabResource> grid;
protected ResourceBundle res;
@ -97,8 +99,8 @@ public class TabResourcesSelectionPanel extends ContentPanel implements
}
try {
buildPanel(properties.id(),
Arrays.<ColumnConfig<TabResource, ?>> asList(nameColumn,
typeColumn, ownerColumn, agencyColumn, dateColumn),
Arrays.<ColumnConfig<TabResource, ?>> asList(nameColumn,typeColumn,
tableTypeNameColumn, ownerColumn, agencyColumn, dateColumn),
nameColumn);
} catch (Throwable e) {