Yii 1:zii.widgets.jui.CJuiDatePicker不同的日期格式不支持提示

时间:2018-11-09 10:30:57

标签: datepicker yii1.x

Yii 1:zii.widgets.jui.CJuiDatePicker不同的日期格式不支持mindate
 1.这是我的月份年份日期选择器,此日期选择器不支持提示和最大日期          2 prblm:本月年日期格式          2.我将此日期格式更改为也不支持(y-m-d),但M yy不支持最小日期          3.附上我的日期选择器图片

$this->widget('zii.widgets.jui.CJuiDatePicker', array(
                //'model' => $model,
                'name' => 'apply_month',
                'value'=>$months,
                'options' => array(
                    'dateFormat' => 'M yy',
                    // 'constrainInput'=>true,
                    'showOtherMonths' => false,      
                    'selectOtherMonths' => false,   
                    'changeYear' => true,           // can change year
                    'changeMonth' => true,          // can change month
                    'yearRange'=>"2018:2018",
                    // 'minDate' => '2018-10',      // minimum date
                    'minDate' => "Oct 2018",      // minimum date
                    'maxDate' => 'Nov 2018',      // maximum date
                    // 'maxDate' => '2018-11-01',      // maximum date
                    'showButtonPanel' => true,      // show button panel
                    'mode'=>'date',
                    'onClose' => 'js:function(dateText, inst) {
       enter image description here $(this).datepicker("setDate", new Date(inst.selectedYear, inst.selectedMonth, 1));
        $("#months").val(inst.selectedYear+"-"+parseInt(inst.selectedMonth+1));
        }',
                ),
                'htmlOptions' => array(
                    'class'=>'form-control input-sm',
                    //'size' => '15',         // textField size
                    //'maxlength' => '10',    // textField maxlength
                    //'readonly'=>'readonly',
                    'placeholder'=>'MM-YYYY',
                    'required'=>'required',
                ),
            ));

Yii 1:zii.widgets.jui.CJuiDatePicker不同的日期格式不支持Mindate

0 个答案:

没有答案