0

Cake 2.x 中的单选按钮是否有单独的类选项?

在我看来,合乎逻辑的方法是:

<div class="input radio required">
    <?php 
        $options = array(
            array('1' => 'Kuchen', 'class' => 'cake'),
            array('2' => 'Kekse', 'class' => 'biscuits'),
            array('3' => 'Eis', 'class' => 'iceCream'),
        );
        $attributes = array(
            'legend' => false,
            'default' => '1'
        );
        echo $this->Form->radio('INCOMETYPE', $options, $attributes);
    ?>
</div>

但这行不通。我希望你能帮忙。谢谢 :)

4

1 回答 1

0

如果您打算在其他地方使用它,您可以扩展 FormHelper 以添加实现此功能。如果它是一次性的,您可能会更好地手动生成标记。使用 $this->Form->radio 生成的代码开始。

于 2013-07-16T16:12:55.917 回答