Class MemberEditorOpenEventArgs
The member editor open event arguments provide the necessary information about the selected field and its fitler settingster on before filter popup opens.
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class MemberEditorOpenEventArgs
Constructors
MemberEditorOpenEventArgs()
Declaration
public MemberEditorOpenEventArgs()
Properties
Cancel
Defines an option to restrict the member editor popup from open.
Declaration
[JsonPropertyName("cancel")]
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
FieldMembers
Defines the filter members of the selected field.
Declaration
[JsonPropertyName("fieldMembers")]
public List<TreeDataInfo> FieldMembers { get; set; }
Property Value
| Type |
|---|
| List<TreeDataInfo> |
FieldName
Defines the selected field name to perform filtering.
Declaration
[JsonPropertyName("fieldName")]
public string FieldName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
FilterSetting
Defines selected field's filter settings.
Declaration
[JsonPropertyName("filterSetting")]
public Filter FilterSetting { get; set; }
Property Value
| Type | Description |
|---|---|
| Filter | A Filter object that represents the filter settings for the selected field. |