Questions tagged [rangeslider]
412 questions
0
votes
1 answer
jquery-ui slider customization with scale
I'm trying to create range slider and have some problems.. I need create slider with scale of 5 values - 1000, 10 000, 20 000, 30 000 and 50 000.
In slider we can click only on these values.
Also I need three inputs which shows input with current…

Vladyslav Sharapat
- 93
- 1
- 4
- 11
0
votes
1 answer
Change JQuery Range Slider values in float after 100K
I want to change JQuery range slider values in float after 100K into 1.0M (Million).
In my scenario,
Min Value: 40K
Max Value: 4M (4 Million)
After moving the slider to 100K, I want to change 100K into 1.0M (1 million) and then it will…

Mudassar
- 117
- 1
- 9
0
votes
1 answer
Angularjs RangeSlider and Checkbox
I found this example on Google.
Is there a way to start with following properties:
$scope.slider_all_options = {
minValue: 0,
maxValue: 100,
options: {
floor: 1,
ceil: 100,
step: 1,
precision: 0,
}
};
Then change the minValue to 1 for…

M osley
- 11
- 3
0
votes
1 answer
RangeSlider unexpeted attribute Bokeh
I am trying to use the RangeSlider within my Bokeh-application, initializing the object as so
from bokeh.models.widgets import RangeSlider
#RangeSlider
slider = RangeSlider(title="OAS slider", start=0, end=1000, value=(0,2000),
…

gussilago
- 922
- 3
- 12
- 27
0
votes
3 answers
Python Bokeh: Timeout for callbacks in case of sliders with range
Currently, I have a DateRangeSlider. I want to record changes of both the lower range and the upper range of the slider. I came across an answer which explained about the 'mouseup' callback_policy. But, this restricts the change to just one of the…

gvij
- 417
- 1
- 8
- 18
0
votes
0 answers
How to use rangeslider.js plugin in aurelia-cli project?
I am going to use rangeslider.js Jquery plugin for aurelia-cli project but rangeslider does not works.
So this could be how to use jquery plugin in aurelia-cli project.

Liu Zhang
- 1,808
- 19
- 31
0
votes
2 answers
Ember not setting range slider value
In a form, in a table, I have...
Score (-10 to +10): {{input type="range" min="-10" max="10" steps="1" value=game.score }}
Score: {{game.score}}
This almost works; the correct value is reported below the slider, and…
Score: {{game.score}}

TCat
- 51
- 9
0
votes
0 answers
Range slider is glitching when it should stop
The problem is that when it should stop by reaching certain value, it starts glitching (going back and forth really fast).
It does not glitch every time, it usually glitches 2 out of 3 times. After one time refresh because it will not work a second…

Matas D
- 1
- 3
0
votes
1 answer
Trying to use range slider to populate a graph?
I have range slider which animates a graph. The problem that I have is:
The slider start at height 0 under the min-height and ends at height 100% above min-height.
What I want is for the slider to start at min-height and end at max-height. But I'm…

Lex Lemmens
- 25
- 1
- 5
0
votes
1 answer
Post Range Slider values to MySQLI using PHP
I have spent a day trying to figure out how to take four range slider values and post them to my database table. I was successful in creating a version where I save the values to a text file, but it works better for me to save the values to my…

TruWaxx
- 1
0
votes
1 answer
Change the rangeslider's starting point videojs
I am using videojs in my react application. I have added rangeslider to it. There is a button near my video player which triggers the rangeslider to show up on the video player. Every thing works fine, but the rangeslider's start arrow is not at the…

EdG
- 2,243
- 6
- 48
- 103
0
votes
1 answer
actions not working inside componentDidMount
I am using react-redux in my application. I have a player and i used rangesliderplugin for videojs. I have an actioncreater which should get triggered when I slide the slider in video timeline. There is a plugin given on…

EdG
- 2,243
- 6
- 48
- 103
0
votes
1 answer
How can I show time in the label of jQ Range slider?
I have tried to use a plugin JQRangeslider to make a datetime filter, but the label of the filter only showed date, but not time. I checked the documentation, but it didn't tell me how to do.
And this is the documentation of…

Desmond Lai
- 35
- 1
- 5
0
votes
1 answer
Bootstrap range slider combine onchange function instead of repeating the onchange function?
I want to minimize my code I want to avoid repeating code on onchange can anyone help me to shorten my code?
$(document).ready(function(){
var realValues = [10, 20, 30, 40, 50];
var labelValues = ['10', '20', '30', '40', '50' ];
var realValues2 =…