DHTMLX Docs & Samples Explorer

editCell()

Required library edition: This method works with any edition of DHTMLX library
Required library file: dhtmlxgrid.js

creates Editor object and switch selected cell to edit mode if allowed

<button onclick="(arguments[0]||window.event).cancelBubble=true; selectAndEdit()">Edit cell</button>
<script>
   function selectAndEdit(){
	mygrid.selectCell("some_row_ID",cellIndex);
	mygrid.editCell();
   }
</script>

See also: editStop