Hello Team
In Treelist the popup does not close after the update
is something wrong with this code ?
<TelerikTreeList Data=@vm.Model
IdField="Id"
ParentIdField="ParentId"
Sortable=true Pageable=true
EditMode="@TreeListEditMode.Popup"
SelectionMode="@TreeListSelectionMode.Single"
OnCreate="@CreateItem"
OnUpdate="@UpdateItem"
OnDelete="@DeleteItem">
<TreeListToolBar>
<TreeListCommandButton Command="Add" Icon="add">Add</TreeListCommandButton>
</TreeListToolBar>
<TreeListColumns>
<TreeListColumn Field=@nameof(ModelHierarchyInfo.Name) Expandable="true" Width="250px"></TreeListColumn>
<TreeListColumn Field=@nameof(ModelHierarchyInfo.Designation)></TreeListColumn>
<TreeListCommandColumn Width="220px">
<TreeListCommandButton Command="Add" Icon="add"></TreeListCommandButton>
<TreeListCommandButton Command="Edit" Icon="edit"></TreeListCommandButton>
<TreeListCommandButton Command="Delete" Icon="delete"></TreeListCommandButton>
<TreeListCommandButton Command="Save" Icon="save" ShowInEdit="true"></TreeListCommandButton>
<TreeListCommandButton Command="Cancel" Icon="cancel" ShowInEdit="true"></TreeListCommandButton>
</TreeListCommandColumn>
</TreeListColumns>
</TelerikTreeList>