This question is locked. New answers and comments are not allowed.
Is it possible to customize Slider in the following way:
1. Store an additional value for each numeric value, something like "object Tag"
2. Store human-readable title and show it instead of default numeric values.
In other words, I'd happy to have slider items something like
and get currently selected item with all additional values together with Int32 Value on post.
Thanks in advance.
1. Store an additional value for each numeric value, something like "object Tag"
2. Store human-readable title and show it instead of default numeric values.
In other words, I'd happy to have slider items something like
class SliderItem{ public Guid Tag{get;set} public Int32 Value{get; set;} public string Title{get; set}}and get currently selected item with all additional values together with Int32 Value on post.
Thanks in advance.