How to delete the event action in a cell?

How to delete the event action in a cell?

marcondomarcondo Posts: 13Questions: 3Answers: 0

How to delete the event action in a cell?

Answers

  • marcondomarcondo Posts: 13Questions: 3Answers: 0
    edited May 2014

    I used this but the focus remains

    keysTable.event.remove.focus( node );

  • marcondomarcondo Posts: 13Questions: 3Answers: 0

    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();
    } );

  • marcondomarcondo Posts: 13Questions: 3Answers: 0

    Solution:

    keysTable.event.action( null, null, function( node ) {   
    
        if(node.getAttribute('class').indexOf('xcl'))
        {                   
            keysTable.fnBlur(); 
            $(node).EditCell();
        }
    } );
    
This discussion has been closed.