Tuesday, 6 August 2013

Multi Handle Slider MVC

Multi Handle Slider MVC

I am seeking to bind a multi handle slider to my model in MVC. The model
looks like this
class Foo
{
public double Lowest{get;set;}
public double Low {get; set;}
public double Center {get; set;}
public double High {get; set;}
public double Highest {get; set;}
}
I want there to be 5 handles on the slider so that it looks something like
this
I don't mind if it binds to hidden fields or visible fields, but the
values must be sent with the model on post. I am totally open to plugins,
as long as you can demonstrate how they would attain my goals.
P.S. I am using the Razor view syntax, not ASP

No comments:

Post a Comment