jQuery Mobile radio buttons not working in ios?

jQuery Mobile radio buttons not working in ios?

I'm working on phonegap thing using jquery mobile controls for both android and ios. Only the radio buttons,flip buttons and select items are not working in ios and working fine in android. I'm using them in <ul>,<li> tags. Is there any problem if i use them in those tags? Example code im giving below:.

  <ul data-role="listview" data-inset="true">
<li>
<fieldset data-role="controlgroup" data-type="horizontal" data-mini="true">
<legend>CC Me To EMail:</legend>
<input type="radio" name="radio-CCMail" id="radio-CCMailOn" value="on" checked="checked">
<label for="radio-CCMailOn">On</label>
<input type="radio" name="radio-CCMail" id="radio-CCMailOff" value="off">
<label for="radio-CCMailOff">Off</label>
</fieldset>
</li>
                </ul>