Tagged Questions
The slider tag has no wiki summary.
24
votes
4answers
15k views
How do you make a WPF slider snap only to discrete integer positions?
The title says it all. All too often I want a WPF slider that behaves like the System.Windows.Forms.TrackBar of old. That is, I want a slider that goes from X to Y but only allows the user to move it ...
18
votes
6answers
15k views
Android: How can i make my page slide as the user slides finger on the screen?
How can i make my page slide as the user slides finger on the screen in android? Any example code?
I just require the same feel as it is on my android g-phone's home screen.The screen moves as the ...
16
votes
4answers
22k views
How to change Jquery UI Slider handle
I want to modify the stock JQuery UI slider so that the handle has a arrow on it rather than being a square. i.e. I want to use a custom image as the handle.
There are a few tutorials that do it:
...
16
votes
5answers
9k views
JQuery Slider, how to make “step” size change
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:
...
14
votes
7answers
2k views
When using setInterval, if I switch tabs in Chrome and go back, the slider goes crazy catching up
I have a jQuery slider on my site and the code going to the next slide is in a function called nextImage. I used setInterval to run my function on a timer, and it does exactly what I want: it runs my ...
13
votes
2answers
6k views
Slider control in Android…is SeekBar really my best/only option?
I'm using SeekBar as a slider because I can't find anything else, but I have to do so much hacky work because it doesn't allow me to set a minimum value or go in between ints. So, any time I need a ...
11
votes
2answers
4k views
Is there a way to style HTML5's range control?
Is there a way to style HTML5's range control? Is it possible to change the color of the line the slider slides on?
9
votes
2answers
19k views
jQuery issue - #<an Object> has no method
I've tried a veriety of jQuery plugins recently and I keep getting this error …
… regardless of what plugin I try to use.
I've checked the links to the JS files which are all there and working ...
8
votes
3answers
8k views
jQueryMobile: how to work with slider events?
I'm testing the slider events in jQueryMobile and I must been missing something.
page code is:
<div data-role="fieldcontain">
<label for="slider">Input slider:</label>
...
7
votes
1answer
4k views
WPF: How to make controls stretch in a StackPanel?
A Slider and some other controls won't stretch to fill available space when placed in a StackPanel; instead the width is always MinWidth (or about 10 pixels if MinWidth is not set). How do I make it ...
6
votes
4answers
347 views
Tried to register widget with id==valores0 but that id is already registered
i get this error, and i don't know how can be solved. I read this link before.
EDIT:1
index.php
<script type="text/javascript">
$(document).ready(function() {
...
6
votes
3answers
690 views
jQuery slider and IE6 Issues
I'm having a few issues with our old friend IE6. The site I'm working on is for a public sector client so it has to support IE6. The slider is fine in IE7+, Firefox, Safari and Chrome. I've tried ...
6
votes
3answers
2k views
Jquery Automatic Image Slider w/ CSS & jQuery
This is Automatic Image Slider w/ CSS & jQuery by Soh Tanaka I am trying to customize it to show .desc when the mouse hover overs the slider but it does not seem to work any help?
//Set Default ...
6
votes
4answers
10k views
How do I make a JQuery Slider-like feature on iPhone/Android web app?
In the iPhone or Android, if you have a JQuery Slider, it doesn't quite work (touchscreen will move the screen instead of drag the slider.)
6
votes
1answer
11k views
jQuery - animate / slide to height: 100%
I have a siple code here:
$('.aktualita_sipky').toggle(function() {
$(this).parent().find('.aktualita_content').animate({
height: "100%",
}, 1500 );
}, function() {
...
6
votes
5answers
6k views
JQuery conflict with an other JQuery library
I use jquery for a module. My joomla template have an integrated jquery menu. So they conflict with each other.
Is there a way to solve this problem. Following the script code of the module
...
6
votes
4answers
6k views
WPF: Slider with an event that triggers after a user drags
I am currently making an MP3 player in WPF, and I want to make a slider that will allow the user to seek to a particular position in an MP3 by sliding the slider to the left or right.
I have tried ...
5
votes
1answer
126 views
A slider for curses based UI
As a learning project, I'd like to set-out to make an ncurses-based UI for a program I had in mind, written in python.
After looking at urwid documentation, I cannot see anyway to create a simple ...
5
votes
4answers
1k views
Double handled slider android
I was wondering if anyone had some code, or knew of a place that has code for creating a double handled slider. Example :
I am looking to do something similar using a double slider to search for a ...
5
votes
3answers
1k views
OpenCV - getting the slider to update its position during video playback
I've picked up 'Learning OpenCV' and have been trying some of the code examples/exercises. In this code snippet, I want to get the slider to update its position with each video frame change, but for ...
5
votes
1answer
577 views
jQuery Slider f is undefined
Some code...
$(function () {
var select = $("#drp_riskcategory");
var drpMin = $("#hdnRiskMin").val();
var drpMax = $("#hdnRiskMax").val();
$("#slider_riskcategory").slider({
...
5
votes
2answers
998 views
C# WPF Slider Issue with IsMoveToPointEnabled
I have IsMoveToPointEnabled on for my Slider, so when I click anywhere on the component the selector moves to my mouse. The problem is if I have this option on and click and hold the mouse down to ...
5
votes
3answers
3k views
Logarithmic slider
I have a slider with steps 0-100;
I want the range to be from 100 to 10,000,000.
I've seen some functions scattered around the net but they're all in C++; i need it in javascript.
Any ideas?
5
votes
1answer
1k views
Twin Slider control .net
Has anyone seen a good twin slider control for .Net (Win forms or WPF).
I'm looking for something that will allow me to select a range from within a set so the first slider would be the start of the ...
5
votes
2answers
5k views
WPF: Slider doesnt raise MouseLeftButtonDown or MouseLeftButtonUp
I tried this XAML:
<Slider Width="250" Height="25" Minimum="0" Maximum="1" MouseLeftButtonDown="slider_MouseLeftButtonDown" MouseLeftButtonUp="slider_MouseLeftButtonUp" />
And this C#:
...
5
votes
3answers
2k views
iPhone application : is-it possible to use a “double” slider to select a price range
I'm working on an iphone application (not web app) and I'd like to build a form asking a user to indicate a price range. Instead of using two text fields, I would prefer to use a double slider to set ...
4
votes
3answers
318 views
Making a slider without recursion
Given the following jsFiddle, how can I implement the same effect as I have made without building on the stack?
http://jsfiddle.net/YWMcy/1/
I tried doing something like this:
...
4
votes
2answers
1k views
How to refresh a jQuery UI Slider after setting min or max values?
I have a ui.slider and change it's min and max values on runtime. But these changes only get reflected in the view, when I set the values afterwards too (which causes it to fire events that are not ...
4
votes
3answers
214 views
“Previous-Next” Button instead of Slider in Mathematica?
Is it possible to use some "Previous-Next" Buttons instead of a slider as in the example Below when the controlled value is discrete ?
I found the Manipulator one quite ugly and would like some ...
4
votes
2answers
1k views
Custom Range/Variable Set with jQuery UI Slider
I wanted to see if I could make a custom data set to use with jQuery UI Slider. I'm working on a site that has dress sizes that come in the range of:
[ 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 16W, 18W, ...
4
votes
1answer
93 views
Help with animation
I've used the "FeatureList" Jquery Plugin to make my own content slider.
The script can be found here: http://pastebin.com/7iyE5ADu
Here is an exemplificative image to show what I'm triyng to ...
4
votes
6answers
670 views
How promising is Flex/Flash as a development path for the iPhone/iPad?
I'm interested in developing for the iPad and iPhone, but I'd prefer not to learn Apple's whole development stack (and good golly, I sure don't want to go back to manual memory management). Oh, sure, ...
4
votes
3answers
4k views
jQuery Slider UI - Enhancements
I was trying out jQuery Slider and used an example to play around.
EDIT:
I would like to have the slider show the values, like a ruler, to increase usability. As it is now, I am finding it difficult ...
4
votes
1answer
965 views
WPF Slider problems
I have seen this behaviour, on an old win32 app, where when you hold down the mouse at some position on the slider track (other than on the thumb), the thumb moves to that position.
In WPF what ...
4
votes
4answers
13k views
jQuery slider range
I am trying to use the range property of the jQuery slider so that the slider control displays two handles from which the user can select a price range for real estate. The code I have is:
...
4
votes
2answers
1k views
JQuery - Slider Tutorials
Does anyone know of some good tutorials that explain how to use the JQuery Slider.
I've found a few, but none of them really present what I need in clear terms. What I really need to figure out how ...
3
votes
1answer
51 views
activate link after slide to unlock… jquery
I have a jquery plugin that i'm working with for a website and I had a quick question... It's a "slide to unlock" plugin that looks just like the iPhone... I was wondering how I would allow people to ...
3
votes
1answer
39 views
Variable steps in asp.net ajax multiple slider control
I am having an asp.net slider
<asp:TextBox ID="sliderTwo" runat="server" Style="display: none;" />
<ajaxToolkit:MultiHandleSliderExtender ID="multiHandleSliderExtenderTwo" runat="server" ...
3
votes
3answers
64 views
Setting slider to max value
I am creating an application of light in which i am displaying image of light. On light i am changing the brightness of light. If i set my slider minimum and maximum value as
slider.minimumValue = ...
3
votes
2answers
213 views
how do i slide images left to right or right to left using jquery?
I'm trying to build a simple image slider for my webpage, and here's the code that I have come up with using jquery, css -
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
...
3
votes
1answer
58 views
slider with fractions of numbers
I have a slider from 1 to 0.1.
I set the minimum and maximum and slider calculates the interval between numbers.
But now i need to use a set of numbers between 1/1, 1/2, ... to 1/9. (e.g. 1, 0.5, ...
3
votes
2answers
119 views
How to Slide div's off/on page using jQuery
I'm trying to create a function that slides div's off/on a page depending on which button/link is clicked.
The basic structure:
<div class="button"><a href="#">Click Box #1</a> ...
3
votes
1answer
167 views
Excel Slider Control: How could I limit the sum of all sliders to, say, 100?
See image for clarity.
I have 5 variables (A, B, C, D and E), each of which can range from 0-100. I need the sum of all these variables to be 100 at all times, not more, not less. However, the way ...
3
votes
4answers
104 views
JavaScript callback functionality failure
I'm trying to implement the slider functionality I found here. However, I can't seem to get the callback functionality to work correctly. The page that I'm attempting to get it to work on is very ...
3
votes
3answers
5k views
Jquery Mobile Slider change event
I have a jquery mobile slider on a simple page. When I drag the slider, the value updates as expected in the textbox. I have looked but cannot find where this logic is happening.
What I would like, ...
3
votes
1answer
217 views
How to add Lables to SWT Scale ticks?
I have a SWT Scale widget, and I need to add labels to the ticks on the scale.
Is there a way to do this? maybe on a Slider widget?
Thanks
3
votes
1answer
439 views
How can I make a Slider control in WPF that has a single snap point?
For example the 'Zoom' control in Microsoft Word/PowerPoint 2010 has a snap point at value 100%.
I know that there is a possibility to make it snap to specific intervals by setting up ticks, and ...
3
votes
2answers
291 views
help with jquery slider range option
Is there a way to limit the slider options in jQuery UI slider?
I have a slider that is broken up into 5 parts.
However, I only want options 2,3, and 4 available. I don't want the handle to go to 1 ...
3
votes
2answers
467 views
javascript youtube like slider control
I've a question about implementing a slider control in a browser.
I need to playback data over time, in a browser. I will have one Worker filling the playback buffer by making calls to a REST api. ...
3
votes
3answers
424 views
Need slider that can increment exponentially (not using range)
At the moment I am using jQuery UI's slider to allow people to select a donation amount. The problem is, the slider is to small and needs to compensate for the minimum of $1 and the maximum of ...