Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap Slider change value handler

I'm using Bootstrap Slider, and I was wondering if there is any way to include a handler for a value change. I see that the documentation includes handlers for slideStart, slide and slideStop, but none for "change" (of value).

It's possible that they could slide the slider around and (upon release) end up on the same value, in which case I would NOT want the event to fire. Only if they slide it to a new value.

I've tried:

$('#sliderAdminType').slider({
    formater: function(value) {
        // my formater stuff that works
        },
    change: function(event, ui) {
        console.log("has changed");
        }       
    });

and

$('#sliderAdminType').change(function() {
    console.log("has changed");
});

and

$('#sliderAdminType').slider().change(function() {
    console.log("has changed");
});

and

$('body').on('change', '#sliderAdminType', function(e){
    console.log("has changed");
});
like image 719
Lys777 Avatar asked Feb 19 '14 01:02

Lys777


2 Answers

You can do the following steps:

1) Use slideStart event to get the original value of your slider

2) Use slideStop event to get the new value of your slider

3) Compare this two value, if it's different then fire your code

var originalVal;

$('.span2').slider().on('slideStart', function(ev){
    originalVal = $('.span2').data('slider').getValue();
});

$('.span2').slider().on('slideStop', function(ev){
    var newVal = $('.span2').data('slider').getValue();
    if(originalVal != newVal) {
        alert('Value Changed!');
    }
});

Fiddle Demo

like image 160
Felix Avatar answered Nov 13 '22 14:11

Felix


The accepted answer is not valid for range: true slider

Here is double-slider check: https://jsfiddle.net/oayj5Lhb/

For double slider: "change" event returns both newValue and oldValue objects. Keep in mind that 'change', 'slideStart', 'slideStop' events are triggered on mouse move (when I asked why the answer was "this is the proper way of implementation", for me it looks a bit strange). Here an example:

$('#your-slider').slider().on('change', function(event) {
    var a = event.value.newValue;
    var b = event.value.oldValue;

    var changed = !($.inArray(a[0], b) !== -1 && 
                    $.inArray(a[1], b) !== -1 && 
                    $.inArray(b[0], a) !== -1 && 
                    $.inArray(b[1], a) !== -1 && 
                    a.length === b.length);

    if(changed ) {
        //your logic should be here
    }
});

Please note: [2, 1] and [1, 2] are considired to be equal because slider pair can be interchangeable.

like image 38
Anton Lyhin Avatar answered Nov 13 '22 14:11

Anton Lyhin