Class
ListViewCommandEventArgs

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

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

public class ListViewCommandEventArgs : EventArgs

Inheritance: objectEventArgsListViewCommandEventArgs

Inherited Members EventArgs.Empty

Constructors

ListViewCommandEventArgs()

Declaration

public ListViewCommandEventArgs()

Properties

IsCancelled

Defines whether the command should be cancelled.

Declaration

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

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

public object Item { get; set; }

Property Value

object