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

568 views Asked by At

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

2

There are 2 answers

0
devend On BEST ANSWER

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.

5
MrCode On

Give the radio buttons that you want to skip: class="jqTransformHidden" and jqTransform will skip those.

AFAIK there isn't a way of skipping an element based on its type, only the class.