Fixed dimensions of window

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-expression-widget@92435 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-02-27 16:09:53 +00:00
parent aeba63edeb
commit 36340e70bc
4 changed files with 6 additions and 8 deletions

View File

@ -24,7 +24,7 @@ import com.sencha.gxt.widget.core.client.event.HideEvent.HideHandler;
* *
*/ */
public class ColumnExpressionDialog extends Window { public class ColumnExpressionDialog extends Window {
protected String WIDTH = "650px"; protected String WIDTH = "660px";
protected String HEIGHT = "426px"; protected String HEIGHT = "426px";
protected ColumnExpressionPanel columnExpressionPanel; protected ColumnExpressionPanel columnExpressionPanel;
protected C_Expression exp = null; protected C_Expression exp = null;

View File

@ -40,8 +40,6 @@ public class ColumnExpressionPanel extends FramedPanel {
} }
protected ColumnExpressionPanelType type; protected ColumnExpressionPanelType type;
protected String WIDTH = "640px";
protected String HEIGHT = "520px";
protected EventBus eventBus; protected EventBus eventBus;
protected ColumnExpressionDialog parentRuleDialog; protected ColumnExpressionDialog parentRuleDialog;
@ -289,11 +287,11 @@ public class ColumnExpressionPanel extends FramedPanel {
break; break;
} }
basicLayout.add(properties, new VerticalLayoutData(1, -1, new Margins( basicLayout.add(properties, new VerticalLayoutData(-1, -1, new Margins(
1))); 1)));
basicLayout.add(conditions, new VerticalLayoutData(1, -1, new Margins( basicLayout.add(conditions, new VerticalLayoutData(-1, -1, new Margins(
1))); 1)));
basicLayout.add(flowButton, new VerticalLayoutData(1, -1, new Margins( basicLayout.add(flowButton, new VerticalLayoutData(-1, -1, new Margins(
5, 2, 5, 2))); 5, 2, 5, 2)));
add(basicLayout); add(basicLayout);

View File

@ -28,7 +28,7 @@ import com.sencha.gxt.widget.core.client.event.HideEvent.HideHandler;
* *
*/ */
public class ColumnFilterDialog extends Window { public class ColumnFilterDialog extends Window {
protected String WIDTH = "650px"; protected String WIDTH = "660px";
protected String HEIGHT = "400px"; protected String HEIGHT = "400px";
protected ColumnExpressionPanel columnExpressionPanel; protected ColumnExpressionPanel columnExpressionPanel;
protected C_Expression exp = null; protected C_Expression exp = null;

View File

@ -25,7 +25,7 @@ import com.sencha.gxt.widget.core.client.event.HideEvent.HideHandler;
*/ */
public class MultiColumnFilterDialog extends Window { public class MultiColumnFilterDialog extends Window {
private MultiColumnFilterTabPanel mcfTabPanel; private MultiColumnFilterTabPanel mcfTabPanel;
protected String WIDTH = "640px"; protected String WIDTH = "660px";
protected String HEIGHT = "480px"; protected String HEIGHT = "480px";
protected C_Expression exp = null; protected C_Expression exp = null;
protected TRId trId; protected TRId trId;