は、私は次の形式を持っています。パス別のクラス名
<ul class="radio_list">
<li> first...
<li> second....
テーブルのクラス名を変更したいと思います。 radio_list
であってはなりません。私は自分の名前を付けたいのですか? 「地域」でどうすればいいですか?
後の作業と<li>
のクラスを変更していません。
'region' => new sfWidgetFormChoice(array('expanded' => true,'choices' => $region), array('class' => 'your_class'))
感謝を!
グンナー
これは私の完全なウィジェットです:
$this->setWidgets(array(
'recipename' => new sfWidgetFormInputText(array(), array('size' => '40', 'maxlength' => '150')),
'description' => new sfWidgetFormInputText(array(), array('size' => '40', 'maxlength' => '100')),
'ingredients' => new sfWidgetFormTextarea(array(), array('rows' => '10', 'cols' => '35')),
'preparation' => new sfWidgetFormTextarea(array(), array('rows' => '10', 'cols' => '35')),
'kis' => new sfWidgetFormChoice(array('expanded' => true, 'choices' => $kis)),
'category' => new sfWidgetFormChoice(array('expanded' => true, 'choices' => $category)),
'region' => new sfWidgetFormChoice(array('expanded' => true, 'choices' => $region)),
));
似たような質問があります(http://stackoverflow.com/questions/2517328/sfwidgetformchoice-rendered-as-an-unordered-list)。 –