0

所以我的 Yii_form.php页面上有这个小部件。

是否可以做一些事情,比如阻止一个月中的某一天?或者可能会阻止每月的所有星期一,不允许用户选择任何星期一。

基于 hamed 回答的更新

<script type="text/javascript">

function disableSpecificDays(date) {
//date is an instance of Date
    var weekDay = date.getDay(); //  Get the weekday as a number (0-6)
    if(weekDay == 1){ //weekDay == 1 means Monday 
        return false;
    }
    else {
        return true;
    }
}

</script>

在视图方面,

<?php $form->widget('zii.widgets.jui.CJuiDatePicker', array(
        'model' => $model,          
        'attribute' => 'date',          
        'value' => $model->date,
        'options' => array(
            'showAnim'=>'fadeIn',
            'showButtonPanel' => true,
            'minDate'=>'0',
            'changeYear' => true,
            'dateFormat' => 'yy-mm-dd',
            'beforeShowDay' => 'disableSpecificDays',
        ),              
    ));
?>

但由于某种原因,它会阻止日期选择器上的所有内容。根本没有什么可以选择的。我在哪一点做错了?请指教。

4

3 回答 3

1

jqueryUi datepicker 有beforeShowDay事件。您可以通过这种方式使用此事件:

$this->widget('zii.widgets.jui.CJuiDatePicker',array(
    ...
   'options'=>array(
       'showAnim'=>'slide',//'slide','fold','slideDown','fadeIn','blind','bounce','clip','drop'
       'showOtherMonths'=>true,// Show Other month in jquery
       'selectOtherMonths'=>true,// Select Other month in jquery,
       'beforeShowDay' => 'disableSpecificDays', //changed ':' to '=>' AND added quote in between function name.
    ),
  'htmlOptions'=>array(
      'style'=>''
  ),
));
?>

现在,您需要在标签disableSpecificDays内定义函数:<script>

function disableSpecificDays(date) {
    //date is an instance of Date
    var weekDay = date.getDay(); //  Get the weekday as a number (0-6)
    var monthDay = date.getDate()   //Get the day as a number (1-31)
    if(monthDay == 12 || monthDay == 13 || weekDay == 1) //weekDay == 1 means Monday 
       return false;
    else return true;
}

这将禁用每个月的第 12 天和第 13 天,并且还会禁用星期一。

这是两个有用的链接:

于 2015-04-13T04:10:09.200 回答
0

我知道这是一个旧条目,但我发现对于 Yii 1,将返回值放在括号 [] 中就可以了。所以JS函数应该是:

<script type="text/javascript">
    //DON'T SHOW SUNDAYS
    function disableSpecificDays(date) {
    //date is an instance of Date
        var weekDay = date.getDay(); //  Get the weekday as a number (0-6)
        var monthDay = date.getDate();
        if(weekDay == 0){
            return [false];
        }
        else {
            return [true];
        }
    }
</script>
于 2016-04-21T21:31:04.190 回答
0

这是一个遗留问题,但这是我通过的代码:

...
'options'=>array(
    'beforeShowDay'=> 'js:function(date){ 
        var weekDay = date.getDay(); 
        var monthDay = date.getDate()  
        if(monthDay == 27 || weekDay == 1) { //Disable all Mondays & 27th of the each month
            return [false];
        } else { 
            return [true];
        }',
...
于 2020-03-23T18:54:40.647 回答