为了绕过自定义自动生成的表单,我需要在一个学说选择小部件上设置“大小”属性。这可能吗?
问问题
585 次
1 回答
1
在你的表单类中试试这个:
$this->widgetSchema['your_choice_field'] = new sfWidgetFormDoctrineChoice(
array(), // you have to fill this array with your option (model, multiple, expanded ...)
array('size' => 5) // Attributes array here you can set attribute that will appear on the element
);
希望能帮助到你
于 2011-08-23T23:23:24.840 回答