Googling isn't yielding results. When loading a sa...
# suitescript
r
Googling isn't yielding results. When loading a saved search via ID in suitescript 1. Do the filters saved with the search also get loaded in SuiteScript? 2. To add additional filters, can I just set
Nsearch.filterExpression = newFilters[]
or will this overwrite the existing filters, and should instead use
search.filters.push(new filter)
?
a
1. yes 2. yeah the 2nd one, push new filters to the existing array
☝️ 1
👍 2
r
thanks