Gets or sets value that will be used as filter operator when the FilterOperator property is equal to the Custom value.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[DefaultValueAttribute("")]
[JsonAttribute(true, true, "")]
public virtual string FilterCustomOperator { get; set; }
Visual Basic
<DefaultValueAttribute("")> _
<JsonAttribute(True, True, "")> _
Public Overridable Property FilterCustomOperator As String
	Get
	Set

Field Value

The default value is an empty string (""), which indicates that this property is not set.

Remarks

The string can be any literal string and can contain two placeholders: DataField name and current FilterValue value.

Examples

"[{0}] LIKE '{1}*'"

See Also