下面是我的代码。我想知道是否有办法阻止按钮可见,因为我只想textField
显示。
<?php
if ($model->fechaCierre1_f!='')
$model->fechaCierre1_f=date('d-m-Y',strtotime($model->fechaCierre1_f));
$this->widget('zii.widgets.jui.CJuiDatePicker', array(
'model'=>$model,
'attribute'=>'fechaCierre1_f',
'value'=>$model->fechaCierre1_f,
'language' => 'es',
'htmlOptions' => array('readonly'=>"", 'class' => 'span1'),
'options'=> array(
'dateFormat'=>'yy-mm-dd',
'altFormat'=>'dd-mm-yy',
'changeMonth'=>'true',
'changeYear'=>'true',
'yearRange'=>'2012:2014',
'showOn'=>'both',
'buttonText'=>'<i class="icon-calendar"></i>'
),)); ?>