selectionModel: { type:"row", mode:"single", column:false, all:false, toggle:false},
1) A row is selected correctly, however it also selects the cells which it didn't do before in v10. Note the type:"row" and both should only happen if type:null
2) "toggle:false" still doesn't work. I have to do the below patch to prevent toggle off if I click the row twice. The docs say this isn't a bug, but when I last posted it, you said it was.
rowClick: function(event, ui) {
var sel = that.grid.pqGrid("SelectRow");
if( !sel.isSelected({rowIndx:ui.rowIndx }) )
sel.add({rowIndx:ui.rowIndx});
},