Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Feature Request: Slider Change Event #1589

Closed
tenor opened this issue May 9, 2011 · 23 comments
Closed

Feature Request: Slider Change Event #1589

tenor opened this issue May 9, 2011 · 23 comments

Comments

@tenor
Copy link

tenor commented May 9, 2011

Can we have a change event for the slider control?

This feature will help creation of much better interactive pages.

Something like:

$('input').slider({change: function});

will be nice, and should respond to tap, slide and manual editing of the slider value in the adjacent textbox.

I used the hack available at http://stackoverflow.com/questions/4583083/jquerymobile-how-to-work-with-slider-events. It worked on the version prior to JQM 1.0a4.1, but it doesn't work anymore.

Thanks.

@toddparker
Copy link
Contributor

This really should be part of the widget, we'll try to land this for 1.0

@toddparker
Copy link
Contributor

Just a note that this should be for slider and the flip switch which is also based on the slider.

@ghost ghost assigned gseguin Jun 20, 2011
@ghost ghost assigned johnbender Aug 8, 2011
@lxg
Copy link

lxg commented Sep 12, 2011

In jQM 1.0-beta3, the slider does provide a "change" event, at least indirectly, as the updated text input fires the event. But, in order to execute AJAX requests when the slider is used, it would be nice to have some sort of "sliderReleased" event. Because, if using the "change" event while the slider is moved, there would be very many AJAX requests; one for each step made on the slider.

One could use mouseup or vmouseup on $('.ui-slider-handle') for this. But currently, vmouseup doesn't work at all, and mouseup only works if the mouse is released while above the slider handle.

Cf. http://pastebin.com/1WsjMndc

@hloehrmann
Copy link

This is working pretty fine for me:

http://jsfiddle.net/jKPyj/

@lxg
Copy link

lxg commented Sep 17, 2011

This does work on the flip switch, but on the "real" slider, it has got the same problem as my solution: When you release the button while the mouse is not above the handle, the event will not fire.

@VTWoods
Copy link
Contributor

VTWoods commented Sep 17, 2011

To fix that, I think I bound functions to the blur and focus of the slider in question. What makes this even more tricky is that there is no way to identify the .ui-slider that is associated with a specific slider. I used the code below as a hack. But I couldn't figure out how to associate a .ui-slider with a JQM slider.

$('.ui-slider').live('mousedown', function(){$('#volumeSlider').trigger('start');});
$('.ui-slider').live('touchstart', function(){$('#volumeSlider').trigger('start');});
$('.ui-slider').live('mouseup', function(){$('#volumeSlider').trigger('stop');});
$('.ui-slider').live('touchend', function(){$('#volumeSlider').trigger('stop');});
$('#volumeSlider').live('focus',function(){$('#volumeSlider').trigger('start');});
$('#volumeSlider').live('blur',function(){$('#volumeSlider').trigger('stop');});

@toddparker
Copy link
Contributor

Change event is now in and working correctly:

4fa6ccd

@barbalex
Copy link

I am using the change event to automatically save changes in data without having to click save.
Unfortunately when the slider is moved it fires a change event for every step. So if you move the slider from 0 to 100 that's 100 events in no time. This blows my saving and results in data conflicts. I am using jQuery mobile 1.0.

@toddparker
Copy link
Contributor

I'm not sure I understand this request. If you move the slider, it should immediately update the value and trigger a change event so the slider and input are in sync. Seems be working correctly now where the input updates as you slide do you can see what the value is. If we only updated this at the end of the slide, it would be odd. Couldn't you just wait a bit before saving the value?

On Nov 25, 2011, at 6:23 PM, "Alexander Gabriel" [email protected] wrote:

I am using the change event to automatically save changes in data without having to click save.
Unfortunately when the slider is moved it fires a change event for every step. So if you move the slider from 0 to 100 that's 100 events in no time. This blows my saving and results in data conflicts. I am using jQuery mobile 1.0.


Reply to this email directly or view it on GitHub:
#1589 (comment)

@barbalex
Copy link

Hi Todd

Would I do that using setTimeout?

I am building my page dynamically. So I am saving like this:
$("[name^='a']").change(function() {

  • saveData();*
    });
    How could I differentiate saving for specific sliders (as I don't want to wait when
    saving other data)? I tried using this.type = "range" but it didn't work.

I believe this information would be helpful for others too, in the docs.

Thanks for your help - and for this great tool!

Alex

2011/11/26 Todd Parker <
[email protected]

I'm not sure I understand this request. If you move the slider, it should
immediately update the value and trigger a change event so the slider and
input are in sync. Seems be working correctly now where the input updates
as you slide do you can see what the value is. If we only updated this at
the end of the slide, it would be odd. Couldn't you just wait a bit before
saving the value?

On Nov 25, 2011, at 6:23 PM, "Alexander Gabriel" [email protected]
wrote:

I am using the change event to automatically save changes in data
without having to click save.
Unfortunately when the slider is moved it fires a change event for every
step. So if you move the slider from 0 to 100 that's 100 events in no time.
This blows my saving and results in data conflicts. I am using jQuery
mobile 1.0.


Reply to this email directly or view it on GitHub:
#1589 (comment)


Reply to this email directly or view it on GitHub:
#1589 (comment)

@lxg
Copy link

lxg commented Nov 26, 2011

@toddparker: A dedicated event for the slider, e.g. “sliderRelease” would be very helpful. Using a timeout would be a wrong solution.

Just think of the real-world scenario: You want to fire an AJAX request as soon as someone releases the slider. If you use a timeout, there would always be a delay. The onChange event, however, would fire for each step on the slider's scale.

@barbalex
Copy link

+1 for the dedicated event
still need to know how to identify the specific slider in a change event

@toddparker
Copy link
Contributor

Please add a link to this issue to the feature request wiki page, then close it. Well reopen when we work on it.

.................................. . . . .
Todd Parker
Partner, Filament Group Inc.
102 South Street #3 Boston, MA 02111
[email protected] // 617.953.1617

On Nov 26, 2011, at 10:40 AM, "Alexander Gabriel" [email protected] wrote:

+1 for the dedicated event
still need to know how to identify the specific slider in a change event


Reply to this email directly or view it on GitHub:
#1589 (comment)

@lxg
Copy link

lxg commented Nov 26, 2011

Done, added an entry in the slider section of the Feature Requests page.

@vpxavier
Copy link

Hello,
I do also absolutely need this functionality.
This is required in order to dispatch one and only one event when the slider has been changed.
I need it in forms (to submit) but also to update other displayed values when the slider's value has been changed.
Thanks for your good work.

@vpxavier
Copy link

vpxavier commented Mar 5, 2012

Could this issue be reopened?
A sliderReleased event would be great...

@mattburns
Copy link

+1 for the dedicated sliderReleased event.

@toddparker toddparker reopened this Apr 28, 2012
@toddparker
Copy link
Contributor

We'll take a look at this for 1.2

@vpxavier
Copy link

Thank you SO much for taking care of this...

@barbalex
Copy link

looking forward to it
thanks, guys!

@jonnyreeves
Copy link

Those looking for a temporary patch for jQuery Mobile 1.1 can drop the following code into your applications' initialization routine. It will modify all jQuery Mobile Slider controls to dispatch a start and stop event as expected:

$(document).on({
    "mousedown touchstart": function () {
        $(this).siblings('input').trigger('start');
    },
    "mouseup touchend": function () {
        $(this).siblings('input').trigger('stop');
    }
}, ".ui-slider");

@ghost ghost assigned johnbender Jul 26, 2012
@johnbender
Copy link
Contributor

@jonnyreeves

98dfce2

Let me know if that works for you.

@johnbender
Copy link
Contributor

Closing with the addition of the docs, please post here if what we've put in place doesn't work for you.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests