Setting Checkbox value
Posted: Thu Jul 03, 2014 2:24 pm
Hi, I have a checkbox called 'return_chk' and simply want to set its value to true or false, I have attempted the methods suggested elsewhere without success! how do I do this?
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/
Hi, I have a checkbox called 'return_chk' and simply want to set its value to true or false, I have attempted the methods suggested elsewhere without success! how do I do this?
Hi Joe,
Use the following code please:preApperyio("mobilecheckboxName").find("input").attr("checked", value).checkboxradio("refresh");/preWhere mobilecheckboxName is a Checkbox name,
value = true or false (checked or unchecked).
Thank you Katya.