Is there any event raise while editing Blazor TreeGrid cell?

Answer:

Yes, While performing Cell Editing “OnCellEdit” and “OnCellSave” has been triggered in Blazor TreeGrid.

<SfTreeGrid DataSource="@TreeGridData" IdMapping="RowId" ParentIdMapping="ParentId" TreeColumnIndex="1" AllowResizing="true" AllowFiltering="false">

<TreeGridEvents OnCellEdit="CellEdit" OnCellSave="CellSaved" TValue="DfRecordEditorRow" OnActionBegin="actionBegin">TreeGridEvents>

<TreeGridEditSettings AllowEditing="true" AllowAdding="true" AllowDeleting="true" Mode="Syncfusion.Blazor.TreeGrid.EditMode.Cell" />

<TreeGridColumns>

. . .

TreeGridColumns>

SfTreeGrid>

@code{

public List TreeGridData { get; set; }

protected override void OnInitialized()

{

this.TreeGridData = CreateTree2();

}

private void CellEdit(CellEditArgs args) //CellEdit event triggers

{

}

private void CellSaved(CellSaveArgs args) //CellSave event triggers

{

}

}



Loader.
Up arrow icon