Class LoadDataArgs
Supplies information about a LoadData event that is being raised.
Inheritance
System.Object
LoadDataArgs
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class LoadDataArgs : object
Properties
Filter
Gets the filter expression as a string.
Declaration
public string Filter { get; set; }
Property Value
Type | Description |
---|---|
System.String | The filter. |
Filters
Gets the filter expression as a collection of filter descriptors.
Declaration
public IEnumerable<FilterDescriptor> Filters { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<FilterDescriptor> |
OrderBy
Gets the sort expression as a string.
Declaration
public string OrderBy { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Skip
Gets how many items to skip. Related to paging and the current page. Usually used with the
Declaration
public int? Skip { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Sorts
Gets the sort expression as a collection of sort descriptors.
Declaration
public IEnumerable<SortDescriptor> Sorts { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<SortDescriptor> | The sorts. |
Top
Gets how many items to take. Related to paging and the current page size. Usually used with the
Declaration
public int? Top { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | The top. |