Fixed ribbon display
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-portlet@83179 82a268e6-3cf1-43bd-a215-b396298e98cf
|
@ -4,6 +4,15 @@
|
|||
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
|
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
|
||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
|
||||
<dependent-module archiveName="tabular-data-widget-td-source-1.0.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/tabular-data-widget-td-source/tabular-data-widget-td-source">
|
||||
<dependency-type>uses</dependency-type>
|
||||
</dependent-module>
|
||||
<dependent-module archiveName="SDMXImportWizardTD-1.0.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/SDMXImportWizardTD/SDMXImportWizardTD">
|
||||
<dependency-type>uses</dependency-type>
|
||||
</dependent-module>
|
||||
<dependent-module archiveName="tabular-data-gxtservice-1.0.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/tabular-data-gxtservice/tabular-data-gxtservice">
|
||||
<dependency-type>uses</dependency-type>
|
||||
</dependent-module>
|
||||
<property name="java-output-path" value="/${module}/target/www/WEB-INF/classes"/>
|
||||
<property name="context-root" value="tabular-data-portlet"/>
|
||||
</wb-module>
|
||||
|
|
|
@ -99,13 +99,14 @@ public class TabularDataPortlet implements EntryPoint {
|
|||
|
||||
// Layout
|
||||
mainPanelLayout = new BorderLayoutContainer();
|
||||
mainPanelLayout.setId("mainPanelLayout");
|
||||
mainPanelLayout.setBorders(true);
|
||||
|
||||
// Ribbon Menu
|
||||
TabularDataRibbon tabularDataTooBar = new TabularDataRibbon(eventBus);
|
||||
TabPanel toolBarPanel = tabularDataTooBar.getContainer();
|
||||
|
||||
BorderLayoutData toolBarData = new BorderLayoutData(122);
|
||||
BorderLayoutData toolBarData = new BorderLayoutData(111);
|
||||
toolBarData.setMargins(new Margins(5));
|
||||
toolBarData.setCollapsible(false);
|
||||
toolBarData.setSplit(false);
|
||||
|
|
|
@ -140,6 +140,7 @@ public class FileToolBar {
|
|||
propertiesButton = new TextButton("Properties", TabularDataResources.INSTANCE.properties());
|
||||
propertiesButton.setId("propertiesButton");
|
||||
propertiesButton.setToolTip("Show properties");
|
||||
|
||||
dataLayout.setWidget(1, 2, propertiesButton);
|
||||
propertiesButton.addSelectHandler(new SelectHandler() {
|
||||
|
||||
|
@ -211,6 +212,7 @@ public class FileToolBar {
|
|||
exportGroup.setStyleName("ribbon");
|
||||
exportGroup.setHeadingText("Export");
|
||||
exportGroup.disable();
|
||||
|
||||
toolBar.add(exportGroup);
|
||||
|
||||
FlexTable exportLayout = new FlexTable();
|
||||
|
|
|
@ -29,6 +29,7 @@ public class TabularDataRibbon {
|
|||
try {
|
||||
ribbon = new TabPanel();
|
||||
ribbon.setId("Ribbon");
|
||||
ribbon.setHeight("106px");
|
||||
|
||||
|
||||
fileToolBar = new FileToolBar(eventBus);
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
<!-- Specify the app entry point class. -->
|
||||
<entry-point class='org.gcube.portlets.user.td.client.TabularDataPortlet' />
|
||||
|
||||
<set-property name="log_DivLogger" value="ENABLED" />
|
||||
<set-property name="log_DivLogger" value="DISABLED" />
|
||||
<set-property name="log_ConsoleLogger" value="ENABLED" />
|
||||
<set-property name="log_FirebugLogger" value="ENABLED" />
|
||||
<set-property name="log_GWTLogger" value="ENABLED" />
|
||||
|
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 775 B |
Before Width: | Height: | Size: 927 B After Width: | Height: | Size: 542 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 693 B |
Before Width: | Height: | Size: 906 B After Width: | Height: | Size: 587 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1011 B |
Before Width: | Height: | Size: 864 B After Width: | Height: | Size: 491 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 792 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 807 B |
|
@ -1,6 +1,7 @@
|
|||
/** Add css rules here for your application. */
|
||||
table {
|
||||
border-spacing: 1px !important;
|
||||
top: 0px !important;
|
||||
}
|
||||
|
||||
|
||||
|
|