CJuiDatePicker is used for date input. it encapsulates the JUIdatepicker plug-in. its basic usage is as follows: 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, ));}
The above is the content of the Zii component-DatePicker sample in the PHP development Framework Yii Framework tutorial (36). For more information, see The PHP Chinese website (www.php1.cn )!