Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - y2ksam

Pages: [1]
1
Can I make a cell editable after one click, but give it a delay so the user can invoke the double click event before the cell becomes editable?

I have tried:

cellClick: function( event, ui ) {



 
    event.preventDefault();
    setTimeout(function(){

      //After waiting 4 seconds, I don't know how to re-enable the default functionality of the event

    },4000);
 

Pages: [1]