Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel
titleBGColorYellow
titleGrid Filter Shortcuts


%

Wildcard

=

value or .eq value will select all records equal to the value entered

>

value or .gt value will select all records greater than the value entered

>=

value  or .ge value will select all records greater than or equal to the value entered (default behavior for numeric fields)

<

value or .lt value will select all records less than the value entered  

<=

value or .le value will select all records less than or equal to the value entered

<>

value or .ne value will select all records not equal to the value entered

~

value or .like value will select all records starting with the value entered - 

Status
coloursubtleRedtrue
titleOnly works for text fields; this is the default behavior for text fields if no operator is entered

*=

value1,value2,value3 etc. or .oneOf value1,value2,value3 etc. will select records containing one of the values listed - 

Status
coloursubtleRedtrue
titleonly works with numeric fields

value1..value2

value1..value2 or .between value1,value2 will select records between the values listed


...