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:
parent
aeba63edeb
commit
36340e70bc
|
@ -24,7 +24,7 @@ import com.sencha.gxt.widget.core.client.event.HideEvent.HideHandler;
|
|||
*
|
||||
*/
|
||||
public class ColumnExpressionDialog extends Window {
|
||||
protected String WIDTH = "650px";
|
||||
protected String WIDTH = "660px";
|
||||
protected String HEIGHT = "426px";
|
||||
protected ColumnExpressionPanel columnExpressionPanel;
|
||||
protected C_Expression exp = null;
|
||||
|
|
|
@ -40,8 +40,6 @@ public class ColumnExpressionPanel extends FramedPanel {
|
|||
}
|
||||
|
||||
protected ColumnExpressionPanelType type;
|
||||
protected String WIDTH = "640px";
|
||||
protected String HEIGHT = "520px";
|
||||
protected EventBus eventBus;
|
||||
|
||||
protected ColumnExpressionDialog parentRuleDialog;
|
||||
|
@ -289,11 +287,11 @@ public class ColumnExpressionPanel extends FramedPanel {
|
|||
break;
|
||||
}
|
||||
|
||||
basicLayout.add(properties, new VerticalLayoutData(1, -1, new Margins(
|
||||
basicLayout.add(properties, new VerticalLayoutData(-1, -1, new Margins(
|
||||
1)));
|
||||
basicLayout.add(conditions, new VerticalLayoutData(1, -1, new Margins(
|
||||
basicLayout.add(conditions, new VerticalLayoutData(-1, -1, new Margins(
|
||||
1)));
|
||||
basicLayout.add(flowButton, new VerticalLayoutData(1, -1, new Margins(
|
||||
basicLayout.add(flowButton, new VerticalLayoutData(-1, -1, new Margins(
|
||||
5, 2, 5, 2)));
|
||||
add(basicLayout);
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ import com.sencha.gxt.widget.core.client.event.HideEvent.HideHandler;
|
|||
*
|
||||
*/
|
||||
public class ColumnFilterDialog extends Window {
|
||||
protected String WIDTH = "650px";
|
||||
protected String WIDTH = "660px";
|
||||
protected String HEIGHT = "400px";
|
||||
protected ColumnExpressionPanel columnExpressionPanel;
|
||||
protected C_Expression exp = null;
|
||||
|
|
|
@ -25,7 +25,7 @@ import com.sencha.gxt.widget.core.client.event.HideEvent.HideHandler;
|
|||
*/
|
||||
public class MultiColumnFilterDialog extends Window {
|
||||
private MultiColumnFilterTabPanel mcfTabPanel;
|
||||
protected String WIDTH = "640px";
|
||||
protected String WIDTH = "660px";
|
||||
protected String HEIGHT = "480px";
|
||||
protected C_Expression exp = null;
|
||||
protected TRId trId;
|
||||
|
|
Loading…
Reference in New Issue