Good evening,
I'll describe what I need to do with the grid and state some questions. I'll also atach some files for you reproduce my cenario. You can ignore the "viewmodel" part.
I have a grid with some columns and two of them are editable.
When I type something in one editable cell, I have to update another cell and then jump to the next editable cell and automatically put it in edit mode. By now I can update the cell, but I'm not able to jump to the other cell and edit it.
I'm having also an erro when I try to get the index row with the "await Grid.GetSelectedRowIndexes()". It returns count 0 and null.
So, I want edit the "Produto.Codigo" column/cell, update the "Produto.Nome" column/cell and jump/edit the "FatorConversao" column/cell, when pressed tab or return.
By now I just put "Testando" in the "Produto.Nome" cell, but in the future I will get the value from the database.
Also, one of the editable fields is like this <GridColumn Field="Produto.Codigo" HeaderText="Código" Width="150">
<EditTemplate>
<SfTextBox ID="MeuID" @bind-Value="@((context as ProdutoFornecedorModel).Produto.Codigo)"></SfTextBox>
</EditTemplate>
</GridColumn>
But when I dobleclick that cell id doesn't put it in the edit mode, I have to click once more.
Thanks in advance!
Attachment:
Project_Files_33b4158d.zip