access function

  1. CMTV

    XF 2.0 Accessing JS handler functions from outside

    Hi! Let's say I have two element handlers: A and B: XF.A = XF.Element.newHandler({ init: function() {}, test: function() { return 'hey!'; } }); XF.B = XF.Element.newHandler({ init: function() { // How to call "test()" function from A handler...
Top Bottom