is it possible to send params with this line :
Code:senderFunction: function(){ var myParamsToSend; Ext.get( 'sliderNext' ).on( 'click', this.next ); ... next: function(){ ... }
is it possible to send params with this line :
Code:senderFunction: function(){ var myParamsToSend; Ext.get( 'sliderNext' ).on( 'click', this.next ); ... next: function(){ ... }
Code:Ext.get( 'sliderNext' ).on( 'click', this.next.createDelegate(this, [params1, params2]) );![]()