Skip to content
Snippets Groups Projects
Commit 561cbbec authored by buczekp's avatar buczekp
Browse files

[LMS-1361] fixed minor bugs

SVN: 14862
parent cfa7c987
No related branches found
No related tags found
No related merge requests found
...@@ -297,6 +297,7 @@ public class FilterToolbar<T> extends ToolBar implements IDatabaseModificationOb ...@@ -297,6 +297,7 @@ public class FilterToolbar<T> extends ToolBar implements IDatabaseModificationOb
((Field<?>) field).reset(); ((Field<?>) field).reset();
} }
} }
updateApplyToolEnabledState();
} }
/** resets filter selection to column filter but doesn't invoke apply */ /** resets filter selection to column filter but doesn't invoke apply */
......
...@@ -113,6 +113,7 @@ public class RunCannedQueryToolbar extends AbstractCustomQueryToolbar ...@@ -113,6 +113,7 @@ public class RunCannedQueryToolbar extends AbstractCustomQueryToolbar
executeButton.hide(); executeButton.hide();
parameterContainer.removeAll(); parameterContainer.removeAll();
parameterFields.clear();
QueryExpression queryOrNull = querySelectionWidget.tryGetSelected(); QueryExpression queryOrNull = querySelectionWidget.tryGetSelected();
if (queryOrNull != null) if (queryOrNull != null)
{ {
...@@ -158,6 +159,7 @@ public class RunCannedQueryToolbar extends AbstractCustomQueryToolbar ...@@ -158,6 +159,7 @@ public class RunCannedQueryToolbar extends AbstractCustomQueryToolbar
{ {
field.reset(); field.reset();
} }
updateExecuteButtonEnabledState();
} }
@Override @Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment