分組單選按鈕,我想提出在邏輯產品組單選按鈕:Zend框架
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/>
不知道確切的格式代碼。只有形式要素很重要。
這聽起來像它可能是同樣的問題。 http://framework.zend.com/issues/browse/ZF-3541 報告提出了一個修復他的帖子。 – 2009-07-01 16:25:37
你在使用Zend_Form嗎? – jason 2009-07-07 04:05:33
是的,我確實使用Zend_Form。 – 2009-07-07 08:46:16