Unplanned
Last Updated: 12 Jun 2024 10:28 by Jennifer
Jennifer
Created on: 12 Jun 2024 10:28
Category: Grid
Type: Bug Report
1
New Grid row closes when using an EditorTemplate and the row expanded in a hierarchy scenario

The Grid will cancel the insertion of a new item when:

  • the new item is not saved yet
  • the new item is expanded and its DetailTemplate is visible
  • the user changes the value of a column that has an editor template

Blazor REPL test page

===

In the meantime, a possible workaround is to hide the expand button for items, which are not added to the "permanent" Grid data yet. Here is how to do it with CSS:

.k-grid-add-row .k-hierarchy-cell .k-icon {
    display: none;
}
0 comments