slider

Adding a second thumb to the slider control in WPF

Hello Everyone, I am trying to make a range control which is basically a slider control with an extra thumb. The only code I found for one already built is here. http://www.codeplex.com/AvalonControlsLib For the life of me I cannot get a tooltip to show up above each thumb (with the current value) while it is being moved. It will sh...

jQuery coda slider effect navigation stop

Hello. I'm using the Coda Slider effect described here: http://jqueryfordesigners.com/coda-slider-effect/ . It works perfectly but I need one more feature added and I don't know how to achieve this: I want the navigation to stop at the last and first tabs. I want the left/right button to disappear or became inactive if I am at the first...

How can I make a XAML Slider element snap to allowed values only?

I have a slider with minimum value 0 and maximum value 1. When I currently slide it, the value gets set to a decimal value between 0 and 1, e.g. 0.2342343. However, I want the value to only be either 0 or 1 (so that my ViewModel property will register the change only if it is 0 or 1 and not multiple times as the user drags it from 0 to...

JQuery Slider Control - slider-handle not moving...

Hi! I've got a text scrollbox made with JQuery. It works fine when on its own (nationalboston.com/temp) but when I hand it off to be wrapped into a Joomla page, the slider handle doesn't move (here). As far as I can tell, everything else works fine. I've inspected the computed CSS in Chrome Inspector, and it seems that the handle is ...

Labels on both sides of a HSlider or VSlider control

Hi Is there some way to have labels on both sides of a VSlider control? I need this to show meters on one side and feet on the other side.... Sami ...

jQuery slider bar with progress bar-type fill

Hi all I'm looking to implement the jQuery UI so that the slider bar fills one side of the bar with a color as you drag the handle along, sort of like a progress bar. Can anyone give me tips on how I might approach this problem? Thank you in advance. ...

How to Get Values from jQuery Select Slider?

I'm using the Filament Group's jQuery Select Slider to produce a form for selecting a range of specific values. How can I get the values of the slider and update <input> field? $(function(){ $('select').selectToUISlider({ labels: 7 }); //fix color fixToolTipColor(); }); I understand that I can get the values throug...

How to slideToggle table row using Jquery?

Hello, I was wondering how I can slideToggle a table row from my script. I have a php file that is included in an html page inside a div called 'output-listings'. PHP FILE: <?php function outputListingsTable() { $mysql = new mysqli('localhost', 'root', 'root', 'ajax_demo') or die('you\'re dead'); $result = $mysql->query("SE...

slideToggle table row using Jquery Help!

Hey, I have been trying for over a week now to slideToggle a table row when the 'more info' button is clicked but nothing seems to be working at all. I'm new to Jquery so if anyone ca help me slideToggle the 'more-info-1', 'more-info-2', 'more-info-3' tr tags. the main problem is that those id's are created dynamically through php and I...

JQuery conflict with an other JQuery library

Hi, 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 <script type="text/javascript" charset="utf-8"> window.onload = function () { var container = jQuery('div.sliderGallery'); ...

How to change icon on the SlidingDrawer handle when clicked

Hi Im trying to change the icon on the handle when i try to open the slidingdrawer. When I extract the handle from the view and sets the onclicklistener or ontouchlistener it seems to never get trigget. public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Slid...

WPF Adding a Tooltip to the Track of a Slider

I have added a tooltip (shown below) to the track in the slider template, but rather than binding to the current value of the slider, I would like to bind to the value corresponding to the "track value" the mouse is over. Similar to what the youtube video slider allows. So the user can mouseover the track and also see the corresponding v...

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: http://jqueryfordesigners.com/slider-gallery/ http://www.ryancoughlin.com/2008/11/04/using-the-jquery-ui-slider/ http://www.keepthewebweird....

Set mulitple flex slider color for a double thumb slider:Urgent

Hi ,I am using a Flex vslider with double thumb.I need a flex code which will change slider body color in such a fashion so that slider portion below lower thumb will show red color,above upper thumb will show green color and portion between two thumb will show orange color. ...

floatValue for CGFloat

Hi Everyone: I have a NSSlider that is attempting to convert a regular float into a CGFloat. The code that I am using: CGFloat testing = [mainSlider floatValue]; However this simply makes the testing variable "0.00" when I attempt to log it. NSLog(@"%f", testing); Does anyone have any ideas as to why this would happen? Thanks fo...

How do I use a different image for each JQuery UI Slider handle

I'm using a JQuery UI slider which has two handles (a.k.a range slider). I know how to style the first handle: .ui-slider-horizontal .ui-slider-handle {background: white url(http://stackoverflow.com/content/img/so/vote-arrow-down.png) no-repeat scroll 50% 50%;} But how do I style the second handle differently? Using Firebug I can see...

Multiple jQuery UI Sliders on dynamic pages

I'm generating jQuery UI slider elements in a Rails helper: def add_link(form_builder, method) link_to_function 'Add' do |page| page << "$(\"div#range\"+new_id+\"\").slider({ range: true, min: 1, max: 7, values: [parseInt($(\"#lecture_events_attributes_\"+new_id+\"_from_block\").val()), parseInt($(\"#lect...

Slider in dashcode web app?

I am trying to make a web app in Dashcode that uses a range slider. I see that the code library has code for "get range slider value" and "set range slider value," but there is no range slider part. So how do I make a range slider? I'm very new to Javascript. ...

How can I have 2 sliders for a form value in jquery?

I am sure this is possible but I have not been able to find an example or anything yet. I have a search form on my site where users can search for other users bas on there age range, for example there is 2 dropdown list with age numbers like 16-35. Is there a way to have a horizontal line and have numbers accross it and 2 objects I can...

JavaFX ButtonSkin anomaly

In the following code, why isn't the button text initially displayed when ButtonSkin (from com.sun.javafx.scene.control.caspian) is used? In the following code (running WinXP, NetBeans 6.7.1, JavaFX 1.2 , JDK 1.6), when ButtonSkin is used, the button text starts as blank. After the slider is used, te button text is displayed. to I...