Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
WebSlider ClientSide Edit Min/Max
posted

Hi,  Is there a way to change the Min/max value of a webSlider in Javascript without doing a postback similar to setting its value as follows:

var slider = $find("webSlider");

 

if (slider)    slider.set_value(iIndex[eventIndex]);

Thanks for any help.

Parents
No Data
Reply
  • 24497
    posted

    Hi,

    Unfortunately that is not supported. Because layout of tickmarks, labels, etc. is defined by those properties and html for those values is calculated and generated on server. The only "get" member functions are supported.

    var minValue = slider.get_minValueAsDouble();

Children