Hi,
Yes. You would use something like this:
Code: HTML/ASPX
<eo:Grid ClientSideOnCellSelected="on_cell_selected_handler" ....>
.....
</eo:Grid>
The above code handles the Grid's ClientSideOnCellSelected event. The handler would be something like this:
Code: JavaScript
function on_cell_selected_handler(grid)
{
//Get the selected cell
var cell = grid.getSelectedCell();
if (cell)
{
//Put the selected cell into edit mode
setTimeout(function()
{
grid.editCell(cell.getItemIndex(), cell.getColIndex(), true);
}, 10);
}
}
The above code uses our client side API. If you have not used our client side API before, you will want to take a look of this topic:
http://www.essentialobjects.com/doc/1/clientapi_howto.aspxHope this helps. Please feel free to let us know if you have any more questions.
Thanks!