条件に基づいて、ラジオ・ボタン・コントロールからラジオ・ボタンを無効にする必要があります。 問題は、ラジオボタンリストはCMSによって自動的に生成され、idはすべてのリスト項目で同じです。 どのように私は条件に基づいて "無効"クラスを適用することができます。 if(some value == am)などの最初のラジオボタンを表示し、他の2つを無効にします。Jqueryのラジオ・リスト・コントロールのラジオ・ボタンを無効にする
<div class="fieldset">
<div class="radio">
<label >
<input id="wffmd4800a78bba44322993e9ef2a91e0ea0_Sections_9__Fields_3__Value" name="wffmd4800a78bba44322993e9ef2a91e0ea0.Sections[9].Fields[3].Value" type="radio" value="Morning (8 AM - 1 PM)">
<span class="disable">Morning (8 AM - 1 PM)</span>
</label>
</div>
<div class="radio">
<label>
<input id="wffmd4800a78bba44322993e9ef2a91e0ea0_Sections_9__Fields_3__Value" name="wffmd4800a78bba44322993e9ef2a91e0ea0.Sections[9].Fields[3].Value" type="radio" value=" Afternoon (1 PM - 5 PM)" aria-invalid="false">
<span> Afternoon (1 PM - 5 PM)</span>
</label>
</div>
<div class="radio">
<label>
<input id="wffmd4800a78bba44322993e9ef2a91e0ea0_Sections_9__Fields_3__Value" name="wffmd4800a78bba44322993e9ef2a91e0ea0.Sections[9].Fields[3].Value" type="radio" value=" Evening (5 PM - 9 PM)">
<span> Evening (5 PM - 9 PM)</span>
</label>
</div>
</div>
</div>
Sitecore Web-form by Marketingerによって生成されます。同じIDを生成する – Shailesh