sfSelectTimeInputJQueryTimePickerPlugin
1.0.0stable
for sf 1.4sf 1.3 MIT
A plugin using juqery TimePicker library to provide a dropdown of time based on specification of intervals and start and stop times.
Feel free to contact me with any questions.
p.s.for implementing use
'time' => new sfWidgetFormSelectTimeInputJQueryTimePicker($options)
Developers
License
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.
Releases for sf 1.4
| Version |
License |
API |
Released |
|
1.0.0stable
|
MIT license |
1.4.0stable
|
12/04/2012 |
Releases for sf 1.3
| Version |
License |
API |
Released |
|
1.0.0stable
|
MIT license |
1.4.0stable
|
12/04/2012 |
Changelog for release 1.0.0 - 12/04/2012
Other releases
Release 1.0.0 - 12/04/2012
sfSelectTimeInputJQueryTimePickerPlugin
A plugin using juqery TimePicker library to provide a dropdown of time based on specification of intervals and start and stop times.
Feel free to contact me with any questions.
Installation
Install jQuery (http://www.jquery.com) somewhere under your web folder (preferably under web/js).
Install jQuery timePicker (http://github.com/perifer/timePicker) somewhere under your web folder (preferably under web/js).
Add the jQuery and timePicker 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 add them to the stylesheets list in view.yml.
Install the plugin.
Using symfony command line:
./symfony plugin:install sfSelectTimeInputJQueryTimePickerPlugin
Or get the latest version from the subversion repository:
svn co http://svn.symfony-project.com/plugins/sfSelectTimeInputJQueryTimePickerPlugin plugins/sfSelectTimeInputJQueryTimePickerPlugin
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('sfSelectTimeInputJQueryTimePickerPlugin');
...
}
}
How to use
Edit a form, for example lib/form/doctrine/MyForm.class.php. To use the date component, do something like this:
$this->widgetSchema['posting_time'] = new sfWidgetFormSelectTimeInputJQueryTimePicker();
Clear your cache.
./symfony cc
Test your form.
Options
exa: $options = array('interval'=>"15",'start_stop'=>array('start'=>'02.00','stop'=>'11.00'));