Search code examples
jqueryradio-buttonjqtransform

How to skip the styling of Radio Button Input while using jQuery jqTransform


Using the jQuery jqTransform plugin, is there a way to skip the styling of Radio Inputs?


Solution

  • In the jQuery.jqTransform.js;

    The line if (selfForm.hasClass('ignore') == false) { $('input:radio', this).jqTransRadio(); } was added to the Radio Button section.

    And class="ignore" onto <itemtemplate><asp:RadioButton CssClass="ignore" /></itemtemplate>.

    All working okay now, the transform plugin just ignore's these inputs.