Click or drag to resize
GridKnownFunction Enumeration
Predefined filter expression enumeration. Used by GridFilterFunction class.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public enum GridKnownFunction
Members
  Member nameValueDescription
NoFilter0 No filter would be applied, filter controls would be cleared
Contains1Same as: dataField LIKE '/%value/%'
DoesNotContain2Same as: dataField NOT LIKE '/%value/%'
StartsWith3Same as: dataField LIKE 'value/%'
EndsWith4Same as: dataField LIKE '/%value'
EqualTo5 Same as: dataField = value
NotEqualTo6Same as: dataField != value
GreaterThan7Same as: dataField > value
LessThan8 Same as: dataField < value
GreaterThanOrEqualTo9Same as: dataField >= value
LessThanOrEqualTo10 Same as: dataField <= value
Between11 Same as: value1 <= dataField <= value2.
Note that value1 and value2 should be separated by [space] when entered as filter.
NotBetween12 Same as: dataField <= value1 && dataField >= value2.
Note that value1 and value2 should be separated by [space] when entered as filter.
IsEmpty13 Same as: dataField = ''
NotIsEmpty14Same as: dataField != ''
IsNull15 Only null values
NotIsNull16 Only those records that does not contain null values within the corresponding column
Custom17 Custom function will be applied. The filter value should contain a valid filter expression, including DataField, operators and value
See Also