Arrow UP/DOWN in subGrid

Hi!



Pushing arrow UP/DOWN in subGrid now act this way:



1. UP or DOWN row is selected

2. subGrid is closed





So, there is no way to select row 3 rows bellow current position eg, by pressing 3 times down arrow button - subGrid is closed after first down arrow press.



Is there any way to change this to CORO selecting style?

by pressing 3 times down arrow button - subGrid is closed after first down arrow press.
Please provide any kind of sample where we can reproduce this issue.
>>Is there any way to change this to CORO selecting style
CORO selection style is hardcoded. But you can implement any custom eXcell type you need. Please find more information here dhtmlx.com/dhxdocs/doku.php?id=d … l_creation

here sample:
dhtmlx.com/docs/products/dht … _grid.html

try to use up/down arrows in subGrid


Hello,


the “sgrid” editor closes when row is selected.


You can modify the dhtmlxgrid_excell_sgrid.js to close editor on enter key press


please locate here



grid.attachEvent(“onRowSelect”,function(id){
that.editStop();
return true;
});


and replace it with


grid.attachEvent(“onEnter”,function(id){


that.editStop();
return true;
});

What about row select by mouse double click, will it work?

You can add to the same code block


grid.attachEvent(“onRowDblClicked”,function(id){
that.editStop();
return true;
});