function (inCell, inRowIndex, inEditing) (view source)
this.grid.beginUpdate();
this.editorApply();
if(this.isEditing()&&!this.isEditRow(inRowIndex)){this.applyRowEdit();
this.grid.updateRow(inRowIndex);
}if(inEditing){this.info = { cell: inCell, rowIndex: inRowIndex };
this.grid.doStartEdit(inCell, inRowIndex);
this.grid.updateRow(inRowIndex);
}else{this.info = {};
}this.grid.endUpdate();
// make sure we don't utterly lose focusthis.grid.focus.focusGrid();
// let the editor focus itself as neededthis._focusEditor(inCell, inRowIndex);
// give ourselves a few ms to boomerang IE focus effectsthis._doCatchBoomerang();