slider - Is there a SliderBar/TrackBar with three thumbs which can be used in ASP.NET? -


i relatively new asp.net have winforms experience.

basically want use 2 types of slider bar controls:

  1. basic sliderbar user drags 1 thumb , can pull value control.
  2. a sliderbar 3 thumbs minimum, predicted , maximum. predicted value must stay within min , max values. need able pull 3 values control. (something http://jqueryui.com/slider/#range third thumb in middle)

other points mention, these controls need created dynamically number of them depend on values saved in sql database. also, have created controls work in winforms doubt can port these on used in asp.net?

has had experience using sliderbars in asp.net? there free packages can used described?

many many help, support or advice can provide!!

im thinking can use jquery control, concern when

a sliderbar 3 thumbs minimum

does mean might have 4,5 or more thumbs in control?

in opinion can use jquery control having min , max values declared database , predicted value thumb, use jquery 3 values, take @ api doc of jquery http://api.jqueryui.com/slider/#option-min

$( ".selector" ).slider({ max: 50 }); $( ".selector" ).slider({ min: 10 }); // getter var max = $( ".selector" ).slider( "option", "max" ); // getter var min = $( ".selector" ).slider( "option", "min" );  // getter var value = $( ".selector" ).slider( "option", "value" ); // setter $( ".selector" ).slider( "option", "value", 10 ); 

unless not understanding correctly question, control should work you.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -