Fixed to reset filterXml as each filter is processed. Otherwise, when it's set to the IsNull/IsNotNull format, it'll end up getting applied to all the rest of the filters. (#475)
This commit is contained in:
parent
719171081f
commit
87e30dd02a
|
@ -62,12 +62,13 @@ export class CamlQueryHelper {
|
|||
|
||||
// Store the generic filter format for later use
|
||||
let query = '';
|
||||
let filterXml = '<{0}><FieldRef Name="{1}" /><Value {2} Type="{3}">{4}</Value></{0}>';
|
||||
let filterXml = '';
|
||||
|
||||
// Appends a CAML node for each filter
|
||||
let itemCount = 0;
|
||||
|
||||
for(let filter of filters.reverse()) {
|
||||
filterXml = '<{0}><FieldRef Name="{1}" /><Value {2} Type="{3}">{4}</Value></{0}>';
|
||||
itemCount++;
|
||||
let specialAttribute = '';
|
||||
|
||||
|
|
Loading…
Reference in New Issue