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:
parent
197bc3f9a9
commit
c84c3d731a
|
@ -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");
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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());
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
||||
|
|
Loading…
Reference in New Issue