1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| $this->setWidgets(array(
'debut' => new sfWidgetFormDate(),
'fin' => new sfWidgetFormDate()
));
$this->setValidators(array(
..
'debut' => new sfValidatorDate(),
'fin' => new sfValidatorDate()
.
));
Config :
public function configure()
{
$dateWidget = new sfWidgetFormInputText();
$this->widgetSchema['debut'] = new sfWidgetFormJQueryDate(array('image'=>'/legacy/images/icon_cal.jpg',
date_widget=> $dateWidget));
$this->widgetSchema['fin'] = new sfWidgetFormJQueryDate(array('image'=>'/legacy/images/icon_cal.jpg',
date_widget=> $dateWidget));
} |
Partager