Skip to content
Snippets Groups Projects
Commit 47eef343 authored by juanf's avatar juanf
Browse files

SSDM-6004 : Bugfix, table cache issue with filters

SVN: 39029
parent 162b1ff0
No related branches found
No related tags found
No related merge requests found
......@@ -131,8 +131,9 @@ function AdvancedSearchController(mainController, forceSearch) {
// fetchOptions.withSample = true;
}
if(!criteria.cached) {
if(!criteria.cached || (criteria.cachedSearch !== options.search)) {
fetchOptions.cache = "RELOAD_AND_CACHE";
criteria.cachedSearch = options.search;
criteria.cached = true;
} else {
fetchOptions.cache = "CACHE";
......
......@@ -350,13 +350,14 @@ var SampleDataGridUtil = new function() {
fetchOptions.from = options.pageIndex * options.pageSize;
}
if(!criteria.cached) {
if(!criteria.cached || (criteria.cachedSearch !== options.search)) {
fetchOptions.cache = "RELOAD_AND_CACHE";
criteria.cachedSearch = options.search;
criteria.cached = true;
} else {
fetchOptions.cache = "CACHE";
}
var criteriaToSend = $.extend(true, {}, criteria);
if(options && options.searchOperator && options.search) {
......
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