in the title I meant some questions...
Hi, I created a slider in my view php file
RangeSlider::create(array(
"name" => "lengthInput",
"handles" => 1,
"length" => "420px",
"ranges" => array(
"min" => 2,
"max" => 20,
),
"scale" => 1,
"step" => 1,
));
I have 3 questions
As I understand the scale is shown as 0-100 (or I did something wrong?) Is it possible to show the real values of ranges min and max?
Is it possible to show the values - something like marks on the scale - it is almost impossible to understand the current value now and set for example 17
Does this control generate any events that could be used in JS to update the current value and show it somewhere? Same like in the example at your site but make it life and update with every change.