Hello!
Could you clarify how do you read slider value? It worked this way for us: prealert(Apperyio("mobilesliderName").val());/pre
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/
Hello!
Could you clarify how do you read slider value? It worked this way for us: prealert(Apperyio("mobilesliderName").val());/pre
Sorry I should clarify that I read the slider value directly into an update data service and then call the value back. So it's been saved to a data table incorrectly.
The data type is number in the table too
I'm also dividing by 100 and then multiplying by 100 on call back
Hi Aeneas,
You faced with problem digital calculations.
You can read about it here: http://stackoverflow.com/questions/14...
Also use following code instead of yours:
pre
return value * 100 / 100
/pre
Regards.