Hello,
I have a grid with
EditMode='Batch'
<BatchEditingSettings EditType="Cell" OpenEditingEvent="DblClick"/>
When I double-click on the cell it (the cell) goes into edit mode which is expected behavior, however I need to achieve the same result by pressing another button located on the same page as grid.
Following code puts entire row into edit mode, but I wonder is there a method to invoke for editing single cell only.
masterTable.editItem(masterTable.get_selectedItems()[0].get_element());