Hi Stworthy,
It looks like calling getSelected on editable cell grid return null, so that i could not get the selected row index.
It even does not trigger onSelect row method. Is it considered as a bug ?
Please check the js fiddle link here.
http://jsfiddle.net/72m654kg/1/
My workaround at the moment is to maintain global variable to store the selected row from ClickRow even and later get the index from that variable.
var selectedRow = null;
...
onClickRow: function(index, row){
selectedRow = row;
}
...
//I user selectedRow to get index to use as deleteRow parameter.