我在schema.yml
中有一个数据库列,其“timestamp
” - 编辑。我根据模型生成了一个表单:echo $form['deadline']->renderRow();
但它只呈现:月/日/年小时/分钟 - “秒”时间组件在哪里?
答案 0 :(得分:2)
sfWidgetFormTime
有一个选项with_seconds
,默认为false,因此您必须将其设置为true。您可以在表单类'configure方法中执行此操作:
$this->getWidget('deadline')->setOption('time', array('with_seconds' => true));