This widget display a simple time picker using this jQuery plugin:
http://www.jnathanson.com/index.cfm?page=jquery/clockpick/ClockPick
In your _form.php, replace the text field with this:
<?php $this->widget('ext.widgets.clockpick.EClockpick', array(
'model' => $model,
'attribute' =>'end',
'options' =>array(
'starthour' => 8,
'endhour' => 20,
'showminutes' => TRUE,
'minutedivisions' => 12,
'military' => TRUE,
),
'htmlOptions' => array('size'=>5,'maxlength'=>5)
)); ?>
Total 1 comment
Thanks for the extension. In Yii version 1.17 the extension doesn't work until modified.
doodle
Leave a comment
Please login to leave your comment.