ClockPicker is a wrapper for http://weareoutman.github.io/clockpicker/, a jQuery based clock-style timepicker.
Requirements ¶
Yii 1.1 or above
Usage ¶
Download and extract to protected/extensions/
Code in view:
echo CHtml::textField('time_field', '');
echo CHtml::textField('another_time_field', '');
$this->widget('application.extensions.clockpicker.ClockPicker', array(
'element' => '#time_field, #another_time_field',
'config' => array(
'placement' => 'top',
'align' => 'top',
'autoclose' => true,
#'donetext' => 'OK',
)
));
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.