Releases for sf 1.4
| Version |
License |
API |
Released |
|
0.1.5alpha
|
MIT license |
0.1.0alpha
|
16/06/2011 |
|
0.1.4alpha
|
MIT license |
0.1.0alpha
|
23/05/2011 |
|
0.1.0alpha
|
MIT license |
0.1.0alpha
|
02/03/2011 |
Releases for sf 1.3
| Version |
License |
API |
Released |
|
0.1.5alpha
|
MIT license |
0.1.0alpha
|
16/06/2011 |
|
0.1.4alpha
|
MIT license |
0.1.0alpha
|
23/05/2011 |
|
0.1.0alpha
|
MIT license |
0.1.0alpha
|
02/03/2011 |
Releases for sf 1.2
| Version |
License |
API |
Released |
|
0.1.5alpha
|
MIT license |
0.1.0alpha
|
16/06/2011 |
|
0.1.4alpha
|
MIT license |
0.1.0alpha
|
23/05/2011 |
|
0.1.0alpha
|
MIT license |
0.1.0alpha
|
02/03/2011 |
Changelog for release 0.1.5 - 16/06/2011
- ldath: bugfix - Better compatibility with PHP 5.2.x
Other releases
Release 0.1.5 - 16/06/2011
- ldath: bugfix - Better compatibility with PHP 5.2.x
Release 0.1.4 - 23/05/2011
- ldath: bugfix - Solving problem when value is send as array to widget
- ldath: bugfix - Solving problem when widget have
required: false and no data is send in process of validation without success
- ldath: Create correct pear package for Symfony
Release 0.1.0 - 02/03/2011
sfDatePickerTimePlugin plugin
The sfDatePickerTimePlugin is a symfony plugin that provides a hybrid jQuery datepiker
and a time selector widget based on the classic sfWidgetFormDateTime widget.
This widget require jQuery and jQueryUI.
Installation
Basic usage
Default options
$this->widgetSchema['date'] = new sfWidgetFormDatePickerTime();
Custom options
$this->widgetSchema['date'] = new sfWidgetFormDatePickerTime(array(
'date' => array('option' => 'value'), // Options for the sfWidgetFormDatePicker
'time' => array('option' => 'value') // Options for the sfWidgetFormTime
));
Custom options and additionnal jQuery datepicker options
$this->widgetSchema['date'] = new sfWidgetFormDatePickerTime(array(
'date' => array(
'option' => 'value', // Options for the sfWidgetFormDatePicker
'jq_picker_options' => array(
'option' => 'value' // Options for the jQuery datepicker - http://jqueryui.com/demos/datepicker/#options
)
),
'time' => array('option' => 'value') // Options for the sfWidgetFormTime
));
Example
Theses options are used in the example screenshot
$this->widgetSchema['date_naissance'] = new sfWidgetFormDatePickerTime(array(
'date' => array(
'jq_picker_options' => array(
'buttonImage' => '/images/ul/icones/calendrier.gif',
'buttonImageOnly' => true,
'showOn' => 'button'
)
),
'time' => array(
'format_without_seconds' => '%hour% h %minute%'
)
));