Is there a way to disable the plus/minus buttons on the webslider control (server side) so they do not appear? We have a tight space requirements... the user wants the "knob" but no plus/minus buttons at each end of the slider.
Any assistance would be appreciated.
I want to add that I tried setting the ShowPlusMinusButtons property (under appearance) to False, save my project, reopen the project and the value that was False is now True. Is there something else that needs to be set?
Hello Wayne,
setting ShowPlusMinusButtons property to false is enough. Check you markup code to be sure that it is set to false:
<ig:WebSlider ID="WebSlider1" runat="server" ShowPlusMinusButtons="False"></ig:WebSlider>
Another option is to disable it in codebehind:
WebSlider1.ShowPlusMinusButtons = false;
Try to rebuild your project after savind.Please let me know if this suggestion is working. Thank you