Skip to content

Instantly share code, notes, and snippets.

@umidjons
Created December 4, 2013 07:09
Show Gist options
  • Save umidjons/7783521 to your computer and use it in GitHub Desktop.
Save umidjons/7783521 to your computer and use it in GitHub Desktop.
Yii: EJuiDateTimePicker extension to choose only time (no date controls)
<?php
// more: http://www.yiiframework.com/extension/ejuidatetimepicker
// original plugin: http://trentrichardson.com/examples/timepicker
$this->widget( 'application.extensions.timepicker.EJuiDateTimePicker', array(
'model' => $model,
'attribute' => 'interval_time',
'options' => array(
'timeOnly' => true,
'showHour' => true,
'showMinute' => true,
'showSecond' => true,
'timeFormat' => 'hh:mm:ss'
),
) ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment