Hi everybody,

I have 2 qooxdoo functions test and load. Load is called and uses jquery to
make an element draggable.
After stop dragging another function is called. How can I call the qooxdoo
test function from the function which is called from test (see code)?

test : function() {
    alert("Test");                      
},  
              
load : function() {
             
              // Some other stuff       
                                
        $("#dragTarget").draggable({
                        snap: "#dropTarget",
                        stop: function(event, ui) { 
                                            // I WANT TO CALL qooxdoo test FROM 
THIS
POSITION        
                                      } // end stop
              }); // end draggable
                 
                 
}

--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Call-qooxdoo-function-from-jquery-callback-function-tp7413840p7413840.html
Sent from the qooxdoo mailing list archive at Nabble.com.
------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to