我有一个表单过滤器,在symfony 1.4中我有一个小部件sfWidgetFormFilterDate
'datedepot' => new sfWidgetFormFilterDate(array('from_date' => new sfWidgetFormDate(), 'to_date' => new sfWidgetFormDate(), 'with_empty' => false)),
问题是我无法将模板中的开始日期和结束日期分开。
<?php echo $filter['datedepot']->render() ?>
如何在模板中分隔开始日期和结束日期?
答案 0 :(得分:1)
您可以按照https://github.com/nationalfield/symfony/blob/master/lib/widget/sfWidgetFormFilterDate.class.php#L28
或者您可以创建窗口小部件,只需从 sfWidgetFormFilterDate 扩展它,并定义渲染https://github.com/nationalfield/symfony/blob/master/lib/widget/sfWidgetFormFilterDate.class.php#L60