I’m looking for syntax to exclude records in which a specific field is empty. Possible?
controller.addFoundSetFilterParam('field_name', 'what?', 'what?');
I’m looking for syntax to exclude records in which a specific field is empty. Possible?
controller.addFoundSetFilterParam('field_name', 'what?', 'what?');
Hi Morley,
Have you tried:
var success = controller.addFoundSetFilterParam(‘field’, ‘!=’, null );
controller.loadAllRecords();
This should work
Cheers
Harry
Thanks Harry. Obvious when it’s in front of you.