asp.net - How do i Remove mobile jQuery styling from RadioButtonlist Control? -


i need disable styling asp.net radio button list control when page load start. have tried

data-role='none'  <table border="0" onclick="ischecked();" data-role="none" class="" id="rbtruetype">     <tbody><tr>         <td><div class="ui-radio"><input type="radio" value="217,1" name="rbtruetype" id="rbtruetype_0"><label for="rbtruetype_0" data-corners="true" data-shadow="false" data-iconshadow="true" data-inline="false" data-wrapperels="span" data-icon="radio-off" class="ui-btn ui-btn-up-c ui-btn-icon-left ui-btn-corner-all ui-radio-off ui-btn-up-undefined"><span class="ui-btn-inner ui-btn-corner-all"><span class="ui-btn-text">true</span><span class="ui-icon ui-icon-shadow ui-icon-radio-off"></span></span></label></div></td>     </tr><tr>         <td><div class="ui-radio"><input type="radio" value="218,0" name="rbtruetype" id="rbtruetype_1" checked="checked"><label for="rbtruetype_1" data-corners="true" data-shadow="false" data-iconshadow="true" data-inline="false" data-wrapperels="span" data-icon="radio-off" class="ui-btn ui-btn-up-c ui-btn-icon-left ui-btn-corner-all ui-btn-up-undefined ui-radio-on"><span class="ui-btn-inner ui-btn-corner-all"><span class="ui-btn-text">false</span><span class="ui-icon ui-icon-shadow ui-icon-radio-on"></span></span></label></div></td>     </tr> </tbody></table> 

above rendered control. can me disable styling control only?

regards.

you have set data-role="none" attribute on input element:

<input type="radio" data-role="none" value="218,0" name="rbtruetype" id="rbtruetype_1" checked="checked"> 

example: http://jsfiddle.net/shanabus/bmp8g/

update

based on comment, here example swaps out styled radio button unstlyed version. not elegant solution, works.

http://jsfiddle.net/shanabus/bmp8g/1/


Comments

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -