csky
20 May 2010, 1:40 PM
ExtJS 3.2.1
The second parameter of the dragstart event should be an Ext.EventObject:
dragstart : ( Ext.Slider slider, Ext.EventObject e )
What is passed is the startXY:
triggerStart: function(isTimer) {
this.clearStart();
this.active = true;
this.onStart(this.startXY); // <==
this.fireEvent('dragstart', this, this.startXY);
},
The second parameter of the dragstart event should be an Ext.EventObject:
dragstart : ( Ext.Slider slider, Ext.EventObject e )
What is passed is the startXY:
triggerStart: function(isTimer) {
this.clearStart();
this.active = true;
this.onStart(this.startXY); // <==
this.fireEvent('dragstart', this, this.startXY);
},