![]() |
|
sfJQueryDateTimeFormWidgetPlugin - 1.0.2A plugin used to implement a jquery date and time picker widget within the forms |
|
![]() |
2
users
Sign-in
to change your status |
A plugin used to implement a jquery date and time picker widget within the forms. Plugin comes included with assets and a validator |
A plugin using juqery TimePicker library to provide a dropdown of time based on specification of intervals and start and stop times.
The most recent version of this plugin includes a validator class which can be used to bind value based on a datetime format.
The version of the plugin also comes with javascript and css assets for the time picker.
| Name | Status | |
|---|---|---|
|
|
lead | moc.liamg <<ta>> hpesoj.eisrep |
Copyright (c) 2012 Joseph M. Persie
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
| Version | License | API | Released |
|---|---|---|---|
| 1.1.0stable | MIT license | 1.4.0stable | 20/04/2012 |
| 1.0.2stable | MIT license | 1.4.0stable | 20/04/2012 |
| 1.0.1stable | MIT license | 1.4.0stable | 15/04/2012 |
| Version | License | API | Released |
|---|---|---|---|
| 1.1.0stable | MIT license | 1.4.0stable | 20/04/2012 |
| 1.0.2stable | MIT license | 1.4.0stable | 20/04/2012 |
| 1.0.1stable | MIT license | 1.4.0stable | 15/04/2012 |
*
*
*
*
A plugin using juqery TimePicker library to provide a dropdown of time based on specification of intervals and start and stop times.
The most recent version of this plugin includes a validator class which can be used to bind value based on a datetime format.
The version of the plugin also comes with javascript and css assets for the time picker.
Install jQuery (http://www.jquery.com) somewhere under your web folder (preferably under web/js).
Install jQuery-UI (http://www.jqueryui.com) somewhere under your web folder (preferably under web/js).
Install Datejs (http://www.datejs.com) somewhere under your web folder (preferably under web/js).
Add the jQuery, timePicker, jQuery-UI and Datejs JavaScript files to the javascripts list in your application's config/view.yml file.
Add any CSS files you want to use for timePicker and datePicker, and add them to the stylesheets list in view.yml.
stylesheets: [ ... , /sfJQueryDateTimeFormWidgetPlugin/css/timePicker.css, ... ]
javascripts: [ ... , /sfJQueryDateTimeFormWidgetPlugin/js/jquery.timePicker.js, ... ]
Install the plugin. Using symfony command line: ./symfony plugin:install sfJQueryTimeDateFormWidgetPlugin Or get the latest version from the subversion repository: svn co http://svn.symfony-project.com/plugins/sfJQueryTimeDateFormWidgetPlugin plugins/sfJQueryTimeDateFormWidgetPlugin
If you installed by subversion, activate the plugin in the config/ProjectConfiguration.class.php file (this will have already been done automatically if you used the plugin:install symfony command).
class ProjectConfiguration extends sfProjectConfiguration { public function setup() { ... $this->enablePlugins('sfJQueryTimeDateFormWidgetPlugin'); ... } }
Publish the Assets. Using symfony command line: ./symfony plugin:publish-assets
Edit a form, for example lib/form/doctrine/MyForm.class.php. To use the date component, do something like this:
$params = $this->getOption('params');
$options = array( 'widget_name'=>'time', 'params'=>$params, 'default_date'=>date('Y-m-d'), 'default_time'=>date('h:i A') );
$this->setWidget('time',new sfJQueryDateTimeWidget($options)); $this->setValidator('time', new sfJQueryDateTimeValidator(array('widget_name'=>'time')));
Clear your cache. ./symfony cc
Test your form.
