Class ActionEventArgs<T>
Defines the event arguments of grid Action.
Inheritance
System.Object
ActionEventArgs<T>
Assembly: Syncfusion.Blazor.dll
Syntax
public class ActionEventArgs<T> : GridEventBaseArgs, IEquatable<ActionEventArgs<T>>
Type Parameters
Name |
Description |
T |
TValue of the grid component
|
Constructors
ActionEventArgs()
Declaration
Properties
Action
Defines the current action.
Declaration
public string Action { get; set; }
Property Value
Type |
Description |
System.String |
|
Cancel
Declaration
public bool Cancel { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
ColumnName
Defines the field name of the currently grouped columns.
Declaration
public string ColumnName { get; set; }
Property Value
Type |
Description |
System.String |
|
Columns
Defines the collection of filtered columns.
Declaration
public List<PredicateModel<object>> Columns { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.List<PredicateModel<System.Object>> |
|
CurrentFilteringColumn
Defines the column name that is currently filtered.
Declaration
public string CurrentFilteringColumn { get; set; }
Property Value
Type |
Description |
System.String |
|
CurrentFilterObject
Defines the object that is currently filtered.
Declaration
public PredicateModel<object> CurrentFilterObject { get; set; }
Property Value
CurrentPage
Defines the current page number.
Declaration
public double CurrentPage { get; set; }
Property Value
Type |
Description |
System.Double |
|
Data
Defines the record objects.
Declaration
public T Data { get; set; }
Property Value
Direction
Defines the direction of sort column.
Declaration
public SortDirection Direction { get; set; }
Property Value
EditContext
Defines the current EditContext
instance.
Declaration
public EditContext EditContext { get; set; }
Property Value
Type |
Description |
Microsoft.AspNetCore.Components.Forms.EditContext |
|
ExcelSearchOperator
Defines the excel search operator
Declaration
public Operator ExcelSearchOperator { get; set; }
Property Value
FilterChoiceCount
Defines take number of data while Filtering
Declaration
public double FilterChoiceCount { get; set; }
Property Value
Type |
Description |
System.Double |
|
FilterOperators
Defines the custom filter operators.
Declaration
public List<object> FilterOperators { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.List<System.Object> |
|
ForeignKeyData
Defines foreign data object.
Declaration
public IDictionary<string, IEnumerable<object>> ForeignKeyData { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.IDictionary<System.String, System.Collections.Generic.IEnumerable<System.Object>> |
|
Declaration
public DOM Form { get; set; }
Property Value
FromColumns
Defines the collection of columns to be moved.
Declaration
public List<GridColumn> FromColumns { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.List<GridColumn> |
|
Index
Declaration
public double Index { get; set; }
Property Value
Type |
Description |
System.Double |
|
Define the movable table form element
Declaration
public DOM MovableForm { get; set; }
Property Value
PreviousData
Defines the previous data.
Declaration
public T PreviousData { get; set; }
Property Value
PreviousPage
Defines the previous page number.
Declaration
public double PreviousPage { get; set; }
Property Value
Type |
Description |
System.Double |
|
PrimaryKeys
Declaration
public string[] PrimaryKeys { get; set; }
Property Value
Type |
Description |
System.String[] |
|
PrimaryKeyValue
Defines the primary key value
Declaration
public object PrimaryKeyValue { get; set; }
Property Value
Type |
Description |
System.Object |
|
RequestType
Defines the current action.
Declaration
public Action RequestType { get; set; }
Property Value
Row
Declaration
public DOM Row { get; set; }
Property Value
RowData
Defines the record objects.
Declaration
public T RowData { get; set; }
Property Value
RowIndex
Defines the edited rowIndex
Declaration
public double RowIndex { get; set; }
Property Value
Type |
Description |
System.Double |
|
SearchString
Defines the string value to search.
Declaration
public string SearchString { get; set; }
Property Value
Type |
Description |
System.String |
|
SelectedRow
Defines the selected row index.
Declaration
public double SelectedRow { get; set; }
Property Value
Type |
Description |
System.Double |
|
Target
Defines the target for dialog
Declaration
public DOM Target { get; set; }
Property Value
ToColumn
Defines the destination column to place reordered columns
Declaration
public GridColumn ToColumn { get; set; }
Property Value
Tr
Defines the selected rows for delete.
Declaration
public List<DOM> Tr { get; set; }
Property Value
Type |
Description |
System.Collections.Generic.List<DOM> |
|
Type
Defines the type of event.
Declaration
public string Type { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
Equals(ActionEventArgs<T>)
Declaration
public bool Equals(ActionEventArgs<T> actionEventArgs)
Parameters
Returns
Type |
Description |
System.Boolean |
|
Implements
System.IEquatable<>