How to delete the event action in a cell?
How to delete the event action in a cell?
marcondo
Posts: 13Questions: 3Answers: 0
How to delete the event action in a cell?
This discussion has been closed.
Answers
I used this but the focus remains
keysTable.event.remove.focus( node );
This the code:
keysTable.event.action( null, null, function( node ) {
debugger;
//return false;
if(node.getAttribute('class').indexOf('xcl'))
{
keysTable.event.remove.focus( node );
$(node).EditCell();
return false;
//keys.event.preventDefault();
}
//$(this).EditCell();
//event.preventDefault();
} );
Solution: