应用 Css 在 symfony 1.4 中自动生成 Class

Apply Css In symfony 1.4 Autogenerate Class

我想要下面的显示字段.. 字段显示正确.. 但我想申请 css 作为保证金.. 那么该怎么做呢?

 $this->setWidgets(array(
  'id'            => new sfWidgetFormInputHidden(),
  'submission_id' => new sfWidgetFormInputText(),
  'user_id'       => new sfWidgetFormInputHidden(),
 // 'field_id'      => new sfWidgetFormDoctrineChoice(array('model' => $this->getRelatedModelName('DataFields'), 'add_empty' => true)),
  'value'         => new sfWidgetFormInputText(),
  'duration'      => new sfWidgetFormInputText(),
  'units'         => new sfWidgetFormChoice(array('choices' => array('In Days' => 'In Days', 'In Months' => 'In Months'))),
  //'avg_score'     => new sfWidgetFormInputText(),
));

您可以应用 css 样式,如下例:

$w = new sfWidgetFormInputText(
  array('default' => 'Fabien'),
  array('class' => 'foo')
);

您也可以尝试使用以下内容设置特定的内联样式:

$w = new sfWidgetFormInputText();
$w->setOptions(array('default' => 'Fabien'));
$w->setAttributes(array('style' => '"color:blue;margin-left:30px;"'));

文档

中有更多信息here

希望对您有所帮助