5-1-3-3. Search template
To set or change the value of Search Criteria, you are required to set the Search Field's "operation" and "value", or "undefined value."
ID for Search Criteria Field's Operation, Values and Undefined Values is given a certain Sting attached to the end of ID.
Search Criteria Field | How to designate ID | Parameter |
Operation | Field's Id + _op.value Eg: Component100_op.value | Defined below |
Value | Field's ID+ _val.API Lookup Eg; Component100_val.SkyEditor2_Text__c | Defined by Field's Style |
Undefined Value | Field's ID+_isNull_op.isEnable Eg: Component100_isNull_op.isEnable | true / false |
Below is a list of Operation Definition.
No. | String of operator | Definition in Apex class |
1 | Not used | '' (empty) |
2 | Equals | 'eq' |
3 | not equal to | 'ne' |
4 | < | 'lt' |
5 | > | 'gt' |
6 | <= | 'le' |
7 | >= | 'ge' |
8 | Contains | 'co' |
9 | does not contain | 'nc' |
10 | start with | 'sw' |
11 | Includes | 'inc' |
12 | Excludes | 'ex' |