Customisation of slider
Can I configure the slider to accept decimal values? ie start from 0.5 and incremet every 0.5 ? If not can you advise of how I could implement it using jqm?
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Can I configure the slider to accept decimal values? ie start from 0.5 and incremet every 0.5 ? If not can you advise of how I could implement it using jqm?
Hi Dimitris,
We cannot reproduce the problem. What browser version do you use?
hi I use chrome Version 27.0.1453.110 m when I put in 0.5 in Val or Min Val it shoes a message saying "allowed values num" is there any way to bypass this???
Create JavaScript file with the following code:
code$(document).on("pagebeforecreate", function(){
var input = $('input[name="mobileslider_2"]'); // control name
input.attr("step", "0.01"); //step
});/code
thanks a lot