Class LABKEY.Query.Filter.DoesNotContain
Extends
LABKEY.Query.Filter.
LABKEY.Query.Filter.DoesNotContain subclass of LABKEY.Query.Filter.
Finds rows where the column value does not contain the filter value. Note that this may result in a slow query
as this cannot use indexes.
Defined in: Query.js.
Constructor Attributes | Constructor Name and Description |
---|---|
LABKEY.Query.Filter.DoesNotContain(columnName, value)
|
- Methods borrowed from class LABKEY.Query.Filter:
- getColumnName, getFilterType, getURLParameterName, getURLParameterValue, getValue
Class Detail
LABKEY.Query.Filter.DoesNotContain(columnName, value)
- Parameters:
- columnName
- Required. The name of the column the filter will be applied to. Can be a string, array of strings, or a LABKEY.FieldKey
- value
- Value used as the filter criterion or an Array of values.