私は以下を持っています:
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
1つのフィールドのみをチェックする必要があるため、ラジオボタンにする必要がありますが、ラジオボタンに変更する方法がわかりませんsfWidgetFormSelectRadio
。成功せずに検索していました。