Quote from
luishp on August 18, 2022, 6:59 pm
@asmat not sure as it's a BootStrap component.
You can try using a more modern solution instead. Add this code into a Container object:
<div class="slidecontainer">
<input type="range" ng-model="$root.myvar" min="1" max="100" value="50" class="slider" id="myRange">
</div>
Change $root.myvar with your desired variable (also min, max and value)
Take a look here for styling your slider:
https://www.w3schools.com/howto/howto_js_rangeslider.asp
Regards.
@asmat not sure as it's a BootStrap component.
You can try using a more modern solution instead. Add this code into a Container object:
<div class="slidecontainer">
<input type="range" ng-model="$root.myvar" min="1" max="100" value="50" class="slider" id="myRange">
</div>
Change $root.myvar with your desired variable (also min, max and value)
Take a look here for styling your slider:
https://www.w3schools.com/howto/howto_js_rangeslider.asp
Regards.