PHP development framework YiiFramework tutorial (36) Zii component-DatePicker example
CJuiDatePicker is used for date input. it encapsulates the JUI datepicker plug-in. its basic usage is as follows:
errorSummary($model); ?>
widget('zii.widgets.jui.CJuiDatePicker', array( 'name'=>'my_date', 'language'=>'en', 'options'=>array( // 'show' (the default), 'slideDown', 'fadeIn', 'fold' 'showAnim'=>'fold', 'showOn'=>'button', // 'focus', 'button', 'both' 'buttonText'=>'Select form calendar', 'buttonImage'=>'images/calendar.png', 'buttonImageOnly'=>true, ), 'htmlOptions'=>array( 'style'=>'width:80px;vertical-align:top' ), )); ?>
endWidget(); ?>
To obtain the input date, assign a value to the Name attribute of CJuiDatePicker. In this example, the value is my_date and DataModel is defined.
class DataModel extends CFormModel{public $my_date;}
When the user submits the request, the date entered by the user is displayed, and the actionIndex of SiteController is modified.
public function actionIndex(){ $model=new DataModel(); if(!empty($_POST['my_date'])){$model->my_date=$_POST['my_date']; if($model->validate()) {$this->render('result', array('model' => $model, )); return;} } $this->render('index', array('model' => $model, ));}