[OPEN-979] Ext.form.SliderField -> Slider events
hi team,
the Ext.form.SliderField does not listen to the changecomplete-event of the slider.
the event "change" is still from the field, so it does not get changes when the slider is dragged and dropped.
as a really fast written hack i use:
Code:
Ext.sequence(Ext.form.SliderField.prototype, 'setValue', function() {
this.fireEvent('change', this, this.getValue());
});
but it should get implemented cleander (returning the thumb etc.).
kind regards,
tobiu