Class
ListViewCommandEventArgs

The class that describes the event arguments to the ListView events.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class ListViewCommandEventArgs : EventArgs

Inheritance: objectEventArgsListViewCommandEventArgs

Inherited Members EventArgs.Empty

Constructors

ListViewCommandEventArgs()

Declaration

cs-api-definition
public ListViewCommandEventArgs()

Properties

IsCancelled

Defines whether the command should be cancelled.

Declaration

cs-api-definition
public bool IsCancelled { get; set; }

Property Value

bool

IsNew

Defines if the data item is recently added by the end user through the Component UI.

Declaration

cs-api-definition
public bool IsNew { get; set; }

Property Value

bool

Item

Defines the item that has been affected. You can cast it to the model type to which you bind the ListView.

Declaration

cs-api-definition
public object Item { get; set; }

Property Value

object