Mike Robbins
01/13/2022, 9:32 PMvar count = vendorBillSearch.runPaged().count;
vendorBillSearch.run().each(function (result) {
// do some work here
return true;
});
Does the call to runPaged()
and the subsequent call to .run().each()
execute the search twice?battk
01/13/2022, 9:46 PM