Skip to content
Snippets Groups Projects
Commit c1efb4ec authored by srosse's avatar srosse
Browse files

OO-984: don't take the search field if search with extended search

parent 34e7f0d8
No related branches found
No related tags found
No related merge requests found
...@@ -561,7 +561,7 @@ public class FlexiTableElementImpl extends FormItemImpl implements FlexiTableEle ...@@ -561,7 +561,7 @@ public class FlexiTableElementImpl extends FormItemImpl implements FlexiTableEle
} }
public String getSearchText() { public String getSearchText() {
return searchFieldEl == null ? null : searchFieldEl.getValue(); return searchFieldEl == null || !searchFieldEl.isVisible() || !searchFieldEl.isEnabled() ? null : searchFieldEl.getValue();
} }
public List<String> getConditionalQueries() { public List<String> getConditionalQueries() {
......
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