Adds an option to the list of search options in the search panel (CONTAINS, EQUALS, etc.).
Syntax
field.addOption(option);
Arguments
option
one of the available search options with the PHPRunner.search.options prefix. Example: PHPRunner.search.options.MORE_THAN, PHPRunner.search.options.NOT_EMPTY.
Return value
No return value.
Example
Add the EMPTY option to the list of search options using the JavaScript OnLoad event:
var srch = pageObj.getSearchController();
var field = srch.getSearchFields()[0];
field.addOption(PHPRunner.search.options.EMPTY);
See also:
•JavaScript API: SearchController object (deprecated)
•JavaScript API: SearchField object