Page 2 of 2

Panel with checkboxes not correctly detecting click event on IOS

Posted: Fri Jul 19, 2013 11:44 am
by Maryna Brodina

Hello! Sorry for late reply. Could you clarify what exactly doesn't work? To retreive all selected checkboxes use the following code:
codeAppery("checkBoxGroupName").find("input:checked").each(function(){
alert($(this).val());
});/code
to check what radio button is selected use this code:
codeAppery("radioGroupName").find(":checked").val();/code
Also there is Value Change event inside the builder which works for radioGroup and checkBoxGroup components.


Panel with checkboxes not correctly detecting click event on IOS

Posted: Sat Jul 20, 2013 11:33 pm
by Ryein Goddard

That worked perfectly. Why doesn't it work on the actual radio button option?

I looked at the jquery mobile site and they said they check for click/vclick on the label.

Oh well.

Thanks for your help Marina Brodina.