Questions tagged [rangeslider]

412 questions
0
votes
1 answer

Range slider with steps

I have problem with range slider. I want only this values: 1, 3, 5, 10, but my script isn't working good. $(function(){ $('#boga').on('input',function(){ var hodnota=$(this).val(); if(hodnota<=5) $(this).attr("step","2"); else…
user7292330
0
votes
2 answers

0 to new input box

I recently have a result in a modal from calculatesum JavaScript displayed as 0 (the value will increase based on the number key in by users) How do I display this final sample value in another input box outside of the…
0
votes
1 answer

Zend Framework - Dojo form support

Hello i am new in Zend Framework i have found that zend have support for dojo forms - Zend_Dojo_Form_Element_* works pretty well. But there are mising some elemnt like (BusyButton, RangeSlider or PasswordValidation) Is zend support them?? I have…
Tom
  • 83
  • 1
  • 1
  • 9
0
votes
1 answer

How do I customise the tooltip on the thumbs of the WPF extended-toolkit RangeSlider?

The RangeSlider widget in the WPF extended-toolkit RangeSlider uses doubles for the values of each of the two thumbs on the slider. I am using the slider to specify a lower DateTime and an upper DateTime. To do this I have to bind to a property…
cdjc
  • 1,039
  • 12
  • 24
0
votes
1 answer

How to use rangeslider.js in ruby on rails?

I want to let the user input data via a slider. I've found rangeslider.js How can I include this to my railsproject?
Max
  • 275
  • 1
  • 4
  • 21
0
votes
1 answer

Add or remove class on elements with range slider

I have a script using a range slider that changes a price value and person count based on the position of the slider. The usage is for pricing for office space based on how many people. Here's the working example here in this…
Ryan Palmer
  • 405
  • 2
  • 9
  • 26
0
votes
2 answers

Rangeslider.js add decimal Points to output

Hi i'm using this range slider: http://rangeslider.js.org/ I would like to know how to add decimal points on the output div like so: 1.000,000
0
votes
1 answer

Range slider change giving [object Object] error

Want the value of a range slider to display next to the slider. On the page roadtripsharing.com/map-it it is giving an [object Object] error however when i cut and paste the html and script into a snippet (below) it appears not to work at all, and…
javaandy
  • 205
  • 3
  • 12
0
votes
1 answer

Cannot update rangeslider.js with programatically loaded attributes

I'm trying to create a graph editor using rangeslider.js plugin but somehow it doesn't update bars properly (most of the time it doesn't work at all). I have a working demo here but also created a simplified Fiddle for it. Sometimes it helps when I…
moped
  • 2,197
  • 2
  • 24
  • 30
0
votes
2 answers

How to get the value of the jquery range slider in angular 2

I am able to drag the slider but i don't how to get the values of the slider .. ngOnInit() { jQuery(this.elementRef.nativeElement).find("#slider").slider({ range:true, orientation: "horizontal", min: 0, …
Arron
  • 1,134
  • 2
  • 13
  • 32
0
votes
0 answers

Java multi thumb slider

I have made ​​a third thumb -yellow one- for this java swing range slider. If I move first and second thumb I see the change of values in jlabels during movement to the left or right. But the third thumb (it has yellow color and from me) send to…
Z.B
  • 61
  • 8
0
votes
1 answer

How to display the range value of a range slider for every range slider shown.

I am trying to get the range slider value to be displayed for every range slider printed out by the for loop, however, the range slider value is not being displayed. Does anyone know what I am doing wrong? The part of my code that displays the range…
Nilim
  • 65
  • 1
  • 6
0
votes
0 answers

How can I create an HTML range slider and add it within a variable type in Javascript?

I am trying to display a range slider after every title and content is printed out. However, whenever I try to add the range slider in my javascript code, it gets displayed as an input box and javascript does not recognize it as a range slider html…
Nilim
  • 65
  • 1
  • 6
0
votes
1 answer

Resetting the slider handles in HorizontalRangeSlider in DOJO

I have created the HorizontalRangeSlider like this, this.horizontalSlider = new HorizontalRangeSlider({ name : "slider", //To place the slider handles at min max. value : [10,100], minimum : 10, …
Manjunath M
  • 588
  • 1
  • 6
  • 30
0
votes
1 answer

How to reset max and min range of a range slider on button click?

Here is what I tried, but it did not work: var $slider = jQuery( "#slider" ); $slider.slider("option", "min", min_range); $slider.slider("option", "max", max_range);
Adi Dynaweb
  • 69
  • 1
  • 12