論理製品グループにラジオ ボタンを表示したい:
Broadband products:
(*) 2 Mbit
( ) 4 Mbit
Voice products:
( ) Standard
( ) Total
Bundles:
( ) 4 Mbit + Standard
( ) 4 Mbit + Total
すべてのラジオ ボタンには同じname
属性があります。Zend Framework 1.8 は、この方法でのラジオ ボタンのグループ化をサポートしていないようです。これに対する解決策はありますか?
更新します。明確にするために、結果のコードは次のようになります。
Broadband products: <br/>
<input type="radio" name="product" value="1"/> 2 Mbit <br/>
<input type="radio" name="product" value="2"/> 4 Mbit <br/>
Voice products: <br/>
<input type="radio" name="product" value="3"/> Standard <br/>
<input type="radio" name="product" value="4"/> Total <br/>
Bundels: <br/>
<input type="radio" name="product" value="5"/> 4 Mbit + Standard <br/>
<input type="radio" name="product" value="6"/> 4 Mbit + Total <br/>
正確な書式設定コードは気にしないでください。フォーム要素のみが重要です。