本文介绍了如何在Yii的CJuidatepicker中放置默认值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有下面的代码以Yii格式显示日历输入.
I have the code below to display a calendar input in Yii form.
<?php $this->widget('zii.widgets.jui.CJuiDatePicker', array(
'name' => 'publish_date',
'attribute' => 'publish_date',
'model'=>$model,
'options'=> array(
'dateFormat' =>'yy-mm-dd',
'defaultDate' => '2014-3-4',
'altFormat' =>'yy-mm-dd',
'changeMonth' => true,
'changeYear' => true,
'appendText' => 'yyyy-mm-dd',
),
));
?>
默认值适用于日历,但是我也想在呈现表单时在日历输入中默认显示它.
The default value work on the calendar but I want to show it by default in the calendar input too when the form is rendering.
我该怎么办?
推荐答案
您可以为此使用HTML值属性
You can use Html value attribute for this
<?php $this->widget('zii.widgets.jui.CJuiDatePicker', array(
'name' => 'publish_date',
'attribute' => 'publish_date',
'model'=>$model,
'options'=> array(
'dateFormat' =>'yy-mm-dd',
'defaultDate' => '2014-3-4',
'altFormat' =>'yy-mm-dd',
'changeMonth' => true,
'changeYear' => true,
'appendText' => 'yyyy-mm-dd',
),
'htmlOptions'=>array('value'=>'2013-4-4')
));
这篇关于如何在Yii的CJuidatepicker中放置默认值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!