vote up 3 vote down star
2

Is it possible to use the JQuery Slider (range slider / dual slider) to have non-linear (non consistent "step" size) values?

I want to horizontal Slider to look like:

|----|----|----|----|----|--------|--------|-------------------------|--------------------------|...
0   500  750  1000  1250 1500     2000     2500                      75000                      100000...

For example, I want to have the following JQuery code:

var values = [0, 500, 750, 1000, 1250, 1500, 2000, 2500, 75000, 100000, 150000, 200000, 250000, 300000, 350000, 400000, 500000, 1000000];
var slider = $("#price-range").slider({
	orientation: 'horizontal',
	range: true,
	min: 0,
	max: 1000000,
	values: [0, 1000000],
	slide: function(event, ui) {
			var includeLeft = event.keyCode != $.ui.keyCode.RIGHT;
			var includeRight = event.keyCode != $.ui.keyCode.LEFT;
			slider.slider('option', 'value', findNearest(includeLeft, includeRight, ui.value));
			$("#price-amount").html('$' + ui.values[0] + ' - $' + ui.values[1]);
			return false;
	},
	change: function(event, ui) { 
		getHomeListings();
	}
});
function findNearest(includeLeft, includeRight, value) {
	var nearest = null;
	var diff = null;
	for (var i = 0; i < values.length; i++) {
			if ((includeLeft && values[i] <= value) || (includeRight && values[i] >= value)) {
					var newDiff = Math.abs(value - values[i]);
					if (diff == null || newDiff < diff) {
							nearest = values[i];
							diff = newDiff;
					}
			}
	}
	return nearest;
}

The code above is not exactly working but the snap to grid functionality doesn't work.

flag

4 Answers

vote up 2 vote down check

Not sure if you want the slider scale to be in proportion to your values* but if so, I provided a solution to this for someone else who asked the same question. You can find my solution here. Basically I make use of the slide event that gets triggered when you move the slider to mimic the stepping, but based off a custom array defining the steps. This way it only allows you to "step" to your predefined values, even if they're not evenly spread.

*In other words if you want your slider to look like this:

|----|----|----|----|----|----|----|
0   10   20  100  1000 2000 10000 20000

then go with one of the other solutions here, but if you want your slider to look like this (diagram not to scale):

|--|--|-------|-----------|-----------|--------------------|--------------------|
0 10 20     100         1000        2000               10000                20000

Then the solution I linked to may be more what you're after.


Edit: Ok, this version of the script should work with dual sliders:

$(function() {
    var values = [0, 500, 750, 1000, 1250, 1500, 2000, 2500, 75000, 100000, 150000, 200000, 250000, 300000, 350000, 400000, 500000, 1000000];
    var slider = $("#price-range").slider({
    	orientation: 'horizontal',
    	range: true,
    	min: 0,
    	max: 1000000,
    	values: [0, 1000000],
    	slide: function(event, ui) {
    		var includeLeft = event.keyCode != $.ui.keyCode.RIGHT;
    		var includeRight = event.keyCode != $.ui.keyCode.LEFT;
    		var value = findNearest(includeLeft, includeRight, ui.value);
    		if (ui.value == ui.values[0]) {
    			slider.slider('values', 0, value);
    		}
    		else {
    			slider.slider('values', 1, value);
    		}
    		$("#price-amount").html('$' + slider.slider('values', 0) + ' - $' + slider.slider('values', 1));
    		return false;
    	},
    	change: function(event, ui) { 
    		getHomeListings();
    	}
    });
    function findNearest(includeLeft, includeRight, value) {
    	var nearest = null;
    	var diff = null;
    	for (var i = 0; i < values.length; i++) {
    		if ((includeLeft && values[i] <= value) || (includeRight && values[i] >= value)) {
    			var newDiff = Math.abs(value - values[i]);
    			if (diff == null || newDiff < diff) {
    				nearest = values[i];
    				diff = newDiff;
    			}
    		}
    	}
    	return nearest;
    }
});

Note that it looks a little funny down the far left end, since the jumps are so close together compared to the right hand end, but you can see its stepping as desired if you use your keyboard arrows to move the slider. Only way to get around that is to change your scale to not be quite so drastically exponential.


Edit 2: Ok, if the spacing is too exaggerated when you use the true values, you could use a set of fake values for the slider & then look up the real value this corresponds to when you need to use the real value (in a similar way to what the other solutions here suggested). Here's the code:

$(function() {
    var trueValues = [0, 500, 750, 1000, 1250, 1500, 2000, 2500, 75000, 100000, 150000, 200000, 250000, 300000, 350000, 400000, 500000, 1000000];
    var values =     [0,   1,   2,    3,    4,    5,    6,    7,    10,     15,     20,     25,     30,     40,     50,     60,     75,     100];
    var slider = $("#price-range").slider({
    	orientation: 'horizontal',
    	range: true,
    	min: 0,
    	max: 100,
    	values: [0, 100],
    	slide: function(event, ui) {
    		var includeLeft = event.keyCode != $.ui.keyCode.RIGHT;
    		var includeRight = event.keyCode != $.ui.keyCode.LEFT;
    		var value = findNearest(includeLeft, includeRight, ui.value
link|flag
@Alconja - Your bottom example looks great however, I don't believe it works if I use a dual handle (Slider Range). Is that correct, if so - how would I modified your code to make that work? Many thanks – TomHankers Jun 9 at 2:05
@Alconja - Also, does this work with the "snap to grid" functionality? It's doesn't appear so. – TomHankers Jun 9 at 2:41
@TomHankers - The "snap to grid" should work (it did when I built the other example), & no it currently doesn't work with dual handles, but I'll have a look at that for you... – Alconja Jun 9 at 3:24
@Alconja - Thanks for looking into the dual handle. My code is above in the original post. – TomHankers Jun 9 at 3:39
@TomHankers - see my new edit. – Alconja Jun 9 at 4:01
show 2 more comments
vote up 0 vote down

I would need to make the opposite of this.

Instead of:

|--|--|-------|-----------|-----------|--------------------|--------------------|
0 10 20     100         1000        2000               10000                20000

I would need something like this:

0 10 20  40   80   100   120   150   180   200   1000      2000             10000       20000

This is going to be used in a real estate website where people most of time look for a house within 200 and 300 thousands, and they never to go 1 or 2 millons, so I need to distribute the width of the slider to be used more common between 100 and 350k.

link|flag
vote up 0 vote down

Based on the above answer and discussion from @Seburdis, and using the names from your example:

var prices_array = [0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 150, 200, 250, 500, 1000, 1500, 2000, 2500, 5000, 10000];

function imSliding(event,ui)
{
    //update the amount by fetching the value in the value_array at index ui.value
    $('#amount').val('$' + prices_arr[ui.value] + ' - $' + prices_arr[prices_arr.length - 1]); 
}

$('#slider-interval').slider({ min:0, max:values_arr.length - 1, slide: imSliding});
link|flag
@karim79 - great little script; however, how do I get this to work with a Range Slider (dual slider)? – TomHankers Jun 9 at 3:31
@karim79 - still curious to know how to get this to work with a dual handle range slider :) – TomHankers Jun 9 at 5:11
vote up 3 vote down

One option for you is use a step size of one and reference an array containing your selected values. Start at 0, go up to 20, get array[value_of_slider] to get your actual value. I don't know sliders well enough to tell you whether or not there is a way to give it a custom set of values.

link|flag
@Seburdis - "reference an array containing your selected files." what files? See the demo available – TomHankers Jun 8 at 22:52
That is, have an array values_array=[0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 150, 200, 250, 500, 1000, 1500, 2000, 2500, 5000, 10000]. Have the slider with a min value of 0 and a max of 20. When preparing a value for display, use values_array[slider.value]. – Chuck Jun 8 at 22:58
@Chuck, would you mind posting the code that will make that work. – TomHankers Jun 8 at 23:00
@TomHankers - My bad, I was thinking values and typed files. Fixed now. – Seburdis Jun 8 at 23:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.