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

[LMS-1518] refresh table data on custom filter selection even if mandatory...

[LMS-1518] refresh table data on custom filter selection even if mandatory properties are not provided

SVN: 16209
parent 7a83ec25
No related branches found
No related tags found
No related merge requests found
......@@ -294,7 +294,8 @@ public class FilterToolbar<T> extends ToolBar implements IDatabaseModificationOb
}
if (changed)
{
// contentPanel of AbstractBrowserGrid was listening on this layout and synchronized size
// contentPanel of AbstractBrowserGrid was listening on this layout and synchronized
// size
layout(); // TODO 2010-04-16, Piotr Buczek: second layout
}
}
......@@ -323,10 +324,9 @@ public class FilterToolbar<T> extends ToolBar implements IDatabaseModificationOb
{
if (disableApply == false)
{
if (isValid())
{
applyFiltersAction.execute();
}
// NOTE: table will be refreshed without applying any filter if custom filter is invalid
// - see tryGetCustomFilter()
applyFiltersAction.execute();
}
}
......
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