is there a default key to bring a cell to edit mode?
if not i was trying this, but it does not work...
Tree keypress event handler:
if (event.keyCode == 13) // pressing retourn
{
// start editing mode, current row index, and myColumn
event.target.startEditing(event.target.currentIndex, myColumn);
}
please help.
thanks a lot.