Class IgbGridCustomFilterRequestedEventArgs
Inheritance
System.Object
IgbGridCustomFilterRequestedEventArgs
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbGridCustomFilterRequestedEventArgs : BaseRendererElement, JsonSerializable
Constructors
IgbGridCustomFilterRequestedEventArgs()
Declaration
public IgbGridCustomFilterRequestedEventArgs()
Properties
Column
The column that requested the filter.
Declaration
public IgbDataGridColumn Column { get; set; }
Property Value
Expression
Sets the filter expression to be used.
Declaration
public IgbFilterExpression Expression { get; set; }
Property Value
Filter
The custom filter that was chosen.
Declaration
public IgbFilterOperand Filter { get; set; }
Property Value
FilterFactory
Gets the FilterFactory to assists in building filters.
Declaration
public FilterFactory FilterFactory { get; }
Property Value
Type
Declaration
public override string Type { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Value
The value that was provided in the editor for the filter.
Declaration
public object Value { get; set; }
Property Value
Type |
Description |
System.Object |
|
ValueScript
Provides a means of setting Value in the JavaScript environment.
Declaration
public string ValueScript { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
Type |
Name |
Description |
BaseRendererControl |
control |
|
System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
Type |
Name |
Description |
BaseRendererControl |
control |
|
System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements