BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
The ejSlider-Control hides the input-field and only displays the current value when the thumb is moved. I did not find a setting to always display the value.
But it then overlaps the scale. I guess it could fiddle more to separate the fields, make the input readonly etc. - but maybe there are hurdles I didn't think of, or maybe someone has already found a way to do that - or maybe I am missing a switch somewhere. So I thought I'll better ask here before starting out... ;-)
[Html]
<div id="Slider"> </div> <input type="text" class="e-textbox" id="result" value="0" /> [Script]
$("#Slider").ejSlider({ change: "onchange",
slide: "onchange"
});
function onchange(args) { $("#result").val(args.value) } |