jsx3.gui.SliderAPI


ChangeFires after the user drags the handle of this slider to a different value or clicks along this slider to move the handle to that position.
DestroyFires after this slider is removed from the DOM.
Incr. ChangeFires at every mouse move while the user drags the handle of this slider.

Changejsxchange

Fires after the user drags the handle of this slider to a different value or clicks along this slider to move the handle to that position. Canceling this event prevents the slider position from changing.
Cancelable: Evaluate to false to cancel event.

Context Variables

this {jsx3.gui.Slider} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.
fpPREVIOUS {Number} - the previous value.
fpVALUE {Number} - the new value.

Incr. Changejsxincchange

Fires at every mouse move while the user drags the handle of this slider.

Context Variables

this {jsx3.gui.Slider} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.
fpVALUE {Number} - the current value.

Destroyjsxdestroy

Fires after this slider is removed from the DOM.

Context Variables

this {jsx3.gui.Slider} - the object that publishes this event.
objPARENT {jsx3.app.Model} - the parent of this slider before it is removed from the DOM.