I have a grid that allows CRUD.
An Add Item button prompts a modal that browse for Items, then after selection adds a new row programmatically to the grid using AddRecordAsync.
The first column is [Item No], next is [Description], both are not editable.
These are both filled up after selection on Item Browser.
Then I decided to allow change item, so I allow editing for [Item No].
For testing purpose, it would just be free text, then I would just update the [Description] on cell save.
So to test, I added an item, double-click on the [Item No] to change it, which triggers the cell to edit mode.
I have an sample number on clipboard so I select all text on existing [Item No], and paste (Ctrl+V) new value.
The new value is shown, then I press TAB key on keyboard, expecting to end edit mode and save the new value.
It did but then the focus moves to the next cell [Description], and opens the cell to edit mode.
If I move out of focus, to end edit, it does. But if I double-click back to [Description], i cannot edit it anymore.
This is definitely a bug. The GridColumn [Description] has AllowEditing="false" set.
Attachment:
Screenshots_14c15d75.zip