Yii has only Date Picker but doesn't have datetime picker or timepicker. the initialization of the widget is similar to CJuiDatePicker. I've borrow the same concept in CJuiDatePicker
I've created this extension because most of the existing widget are already outdated especially the 'mobile device slideAccess features'.
this widget support:
Yii 1.1.x or above
extract the files under protected/extensions folder
$this->widget('ext.jquery-ui-timepicker.BJuiDateTimePicker',array( 'model'=>$model, 'attribute'=>'date_from', 'type'=>'datetime', // available parameter is datetime or time //'language'=>'de', // default to english //'themeName'=>'sunny', // jquery ui theme, file is under assets folder 'options'=>array( // put your js options here check http://trentrichardson.com/examples/timepicker/#slider_examples for more info 'timeFormat'=>'HH:mm:ss', 'showSecond'=>true, 'hourGrid'=>4, 'minuteGrid'=>10, ), 'htmlOptions'=>array( 'class'=>'input-medium' ) ));
Be the first person to leave a comment
Please login to leave your comment.