New to Telerik UI for BlazorStart a free 30-day trial

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

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class TreeListRowClickEventArgs

Inheritance: objectTreeListRowClickEventArgs

Constructors

C#
public TreeListRowClickEventArgs(object item, string field, EventArgs eventArgs)
Parameters:itemobjectfieldstringeventArgsEventArgs

Properties

Defines the arguments of the event. You can cast it to the specific argument type and check if the click comes from mouse, keyboard or other.

C#
public EventArgs EventArgs { get; set; }

The Field of the clicked TreeList column. This property will be populated when you click on a data cell.

C#
public string Field { get; set; }

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

C#
public object Item { get; set; }

Defines whether the component should re-render. Useful when you need to update parameter, or state of the TreeList in the event.

C#
public bool ShouldRender { get; set; }