radiobutton checked value
I am trying to retrieve radiogroup selected value using javascript action with onclick event. but it not reflacting.
i follow this url
https://getsatisfaction.com/apperyio/...
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/
I am trying to retrieve radiogroup selected value using javascript action with onclick event. but it not reflacting.
i follow this url
https://getsatisfaction.com/apperyio/...
Hi Pritu,
Please make sure you specified a name 'radiogroup' correctly. What is displayed in alert?
alert box retrieve "undefine"
this is my public link
http://appery.io/app/mobile-frame?src...
click somthing word in search box and after click on button
it will display popup and show the result
Hello! It's not possible to do navigateTo and read values on this page at once prevar val = Appery("radiogroup").find(":checked").val();/preYou need to save (for example to localStorage) checked value on page with radiogroup (popupdemo page). When you return to upcoming page (on page Show event for example) - do necessary actions. Another way is to use jqm popup instead Appery.io one (which is in fact dialog) https://getsatisfaction.com/apperyio/.... But please note it's still not possible to read checked value because user didn't check anything yet, but you're trying to do preAppery("radiogroup").find(":checked").val();/pre already.
thank you so much maryna..I will try another way