Enter Button to Save in DataGrid with Inline Editing

Hello,
In Blazor DataGrid Component - InLine Editing | Free UI Components by Radzen component it would be great if while editing the user can press "Enter" to save the values. In other words pressing Enter would trigger a check button press. Is there any way to do that?

The values are changed on every editor when editor loose focus and the record will be saved if you press the save button - if the button is focused the ENTER key will work as well.

Can you please elaborate. How do you make the button be focused?

I’m explaining how the demo works at the moment - if you need something different you need to code it manually since there is no such built-in functionality.

Oh ok, any idea how I would code it manually? Where I would start?

Maybe you should use a common custom editor for all columns/cells. Instead column EditTemplate you can use Template where you can place your custom editor with custom edit/save logic - for sure it looks like a complex task.