Fixed modal windows

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-expression-widget@115453 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-06-22 11:47:06 +00:00
parent 197bc3f9a9
commit c84c3d731a
12 changed files with 12 additions and 5 deletions

View File

@ -63,6 +63,7 @@ public class ColumnFilterDialog extends Window implements MonitorDialogListener
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("New Filter");

View File

@ -60,6 +60,7 @@ public class MultiColumnFilterDialog extends Window implements MonitorDialogList
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("New Filter");

View File

@ -114,6 +114,7 @@ public class ReplaceColumnByExpressionDialog extends Window implements
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("Replace Column By Expression");

View File

@ -114,6 +114,7 @@ public class ReplaceColumnByMultiColumnExpressionDialog extends Window implement
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("Replace Column By Expression");

View File

@ -144,6 +144,7 @@ public class ReplaceExpressionDialog extends Window implements
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("Replace Expression");

View File

@ -63,6 +63,7 @@ public class RowsDeleteByExpressionDialog extends Window implements MonitorDialo
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("Delete Rows By Expression");

View File

@ -60,6 +60,7 @@ public class RowsDeleteByMultiColumnExpressionDialog extends Window implements M
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("Delete Rows By Expression");

View File

@ -46,11 +46,11 @@ public class RuleEditDialog extends Window implements
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("Edit Rule On Column");
setClosable(true);
setModal(true);
forceLayoutOnResize = true;
getHeader().setIcon(ExpressionResources.INSTANCE.ruleEdit());

View File

@ -52,11 +52,11 @@ public class RuleOnColumnCreateDialog extends Window implements
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("New Rule On Column");
setClosable(true);
setModal(true);
forceLayoutOnResize = true;
getHeader().setIcon(ExpressionResources.INSTANCE.ruleColumnAdd());

View File

@ -60,11 +60,11 @@ public class RuleOnTableCreateDialog extends Window implements
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("New Rule On Column");
setClosable(true);
setModal(true);
forceLayoutOnResize = true;
getHeader().setIcon(ExpressionResources.INSTANCE.ruleTableAdd());

View File

@ -82,11 +82,11 @@ public class TemplateColumnExpressionDialog extends Window implements
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("New Rule");
setClosable(true);
setModal(true);
forceLayoutOnResize = true;
getHeader().setIcon(ExpressionResources.INSTANCE.ruleColumnAdd());

View File

@ -73,11 +73,11 @@ public class TemplateMultiColumnExpressionDialog extends Window implements
protected void initWindow() {
setWidth(WIDTH);
setHeight(HEIGHT);
setModal(true);
setBodyBorder(false);
setResizable(false);
setHeadingText("New Rule");
setClosable(true);
setModal(true);
forceLayoutOnResize = true;
getHeader().setIcon(ExpressionResources.INSTANCE.ruleTableAdd());