Stay organized with collections
Save and categorize content based on your preferences.
Registers a callback that's fired when the slider's state changes. If the change is due to the user dragging the slider, the event will not fire until the drag completes.
Returns an ID which can be passed to unlisten() to unregister the callback.
Usage
Returns
Slider.onChange(callback)
String
Argument
Type
Details
this: ui.slider
ui.Slider
The ui.Slider instance.
callback
Function
The callback to fire when the slider's state changes. The callback is passed the slider's current value and the slider widget.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["The `onChange` method registers a callback function that is triggered when the slider's value changes, but only after a user completes dragging the slider."],["It returns a unique ID that can be used with the `unlisten()` method to remove the registered callback."],["The callback function receives the slider's current value and the slider widget itself as arguments when invoked."]]],[]]