Skip to content
Snippets Groups Projects
Commit 82159be7 authored by Johannes Goderbauer's avatar Johannes Goderbauer
Browse files

[Projekt: Entwicklung - Neon][TicketNr.: 1073079][Einführung des RecordsRecipe...

[Projekt: Entwicklung - Neon][TicketNr.: 1073079][Einführung des RecordsRecipe (filterbasierte Lösung für große selektierte Datensatzmengen)]
excludedIds in cacheKey erweitern
parent 71f75e7f
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@ CachedRecordContainerFieldPresets.NONE = function(){
* Does not include a locale, but includes:
* <ul>
* <li>$local.idvalues</li>
* <li>$local.idvaluesExcluded</li>
* <li>$local.filters</li>
* <li>$local.order</li>
* <li>$local.grouping</li>
......@@ -35,13 +36,14 @@ CachedRecordContainerFieldPresets.NONE = function(){
*/
CachedRecordContainerFieldPresets.STANDARD = function(){
//grants are parts of the $local.filter-variable
return ["$local.idvalues", "$local.filters", "$local.order", "$local.grouping"];
return ["$local.idvalues", "$local.idvaluesExcluded", "$local.filters", "$local.order", "$local.grouping"];
};
/**
* Constant for field presets that represents some standard varaiblenames
* Does include a locale (if clientside) and:
* <ul>
* <li>$local.idvalues</li>
* <li>$local.idvaluesExcluded</li>
* <li>$local.filters</li>
* <li>$local.order</li>
* <li>$local.grouping</li>
......
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