0
votes

If you take a look at this sencha fiddle, its from Sencha examples Locking Grouping Grid with Summary. But I have edited a bit the example.

If you clic on the first row, second column (Integrate 2.0 Forms with 2.0 Layouts), it starts edit the cell, don´t change nothing and press enter, I want the view to start edit the same cell of the next row, but it only "focus" that cell, it doesn´t start editing the cell.

Am I missing something in the code?Any idea if I am doing something wrong?

1

1 Answers

3
votes

You just have to add the following line at the bottom of your method :

eOpts.stopPropagation();

Your code was working well but the "press ENTER" event you intercepts close the new cell you just started to edit.