0

我有以下内容:

abstract class BaseSellerForm extends BaseFormDoctrine
{
  public function setup()
  {
    $this->setWidgets(array(
      'id'         => new sfWidgetFormInputHidden(),
      'name'       => new sfWidgetFormInputText(),
      'commission' => new sfWidgetFormInputText(),
      'active'     => new sfWidgetFormInputCheckbox(),
      'is_default' => new sfWidgetFormInputCheckbox(),
    ));

is_default应该是单选按钮,因为必须检查一个字段,但我不知道如何将其更改为单选按钮,正在搜索sfWidgetFormSelectRadio但没有成功。

4

1 回答 1

0

你在sfWidgetFormChoice下尝试过吗?

于 2012-07-19T16:52:56.137 回答