KaxListViewFilterFunction Enumeration |
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic enum KaxListViewFilterFunction
Public Enumeration KaxListViewFilterFunction
public enum class KaxListViewFilterFunction
type KaxListViewFilterFunction
Members
| Member name | Value | Description |
---|
| Contains | 0 | Same as: dataField LIKE '/%value/%' |
| EqualTo | 1 |
Same as: dataField = value
|
| NotEqualTo | 2 | Same as: dataField != value |
| GreaterThan | 3 | Same as: dataField > value |
| LessThan | 4 |
Same as: dataField < value
|
| GreaterThanOrEqualTo | 5 | Same as: dataField >= value |
| LessThanOrEqualTo | 6 |
Same as: dataField <= value
|
| IsEmpty | 7 |
Same as: dataField = ''
|
| NotIsEmpty | 8 | Same as: dataField != '' |
| IsNull | 9 |
Only null values
|
| NotIsNull | 10 |
Only those records that does not contain null values within the corresponding column
|
| StartsWith | 11 | Same as: dataField LIKE 'value/%' |
| EndsWith | 12 | Same as: dataField LIKE '/%value' |
| Group | 13 | |
See Also