CGridView中的CJuiDatePicker和UNIX时间戳中的值不起作用?

时间:2014-06-04 11:48:53

标签: php yii cgridview

在数据库字段中,“created”值存储在UNIX时间戳中。在CJuiDatePicker中选择日期后,即使有这样的日期也没有任何反应。这是代码:

this->widget('zii.widgets.grid.CGridView', array(
    'dataProvider' => $model->search(),
    'enableSorting'=>false,
    'filter'=>$model,
    'afterAjaxUpdate'=>"function() {
        jQuery('#Page_created').datepicker(jQuery.extend(jQuery.datepicker.regional['en'],{'showAnim':'fold','dateFormat':'dd.mm.yy','changeMonth':'true','showButtonPanel':'true','changeYear':'true'}));
    }",
    'columns' => array(
        'title' => array(
            'name'=>'title',
//            'header'=>'Title',
            'type'=>'raw',
            'value'=>'CHtml::link($data->title,Yii::app()->request->baseUrl."/page/".$data->id)',
            'headerHtmlOptions' => array('style'=>'width:250px;'),
        ),
        array(
            'name'=>'created',
            'type'=>'raw',
            'value' => 'date("j.m.Y", $data->created)',
            'filter'=>false,
            'filter'=>$this->widget('zii.widgets.jui.CJuiDatePicker', array(
                    'model'=>$model,
                    'attribute'=>'created',
                    'language'=>'en',
                    'options'=>array(
                        'showAnim'=>'fold',
                        'dateFormat'=>'dd.mm.yy',
                        'changeMonth' => 'true',
                        'changeYear'=>'true',
                        'showButtonPanel' => 'true',
                    ),
                ),true),
            'htmlOptions' => array('style' => 'width:90px;'),
        ),

问题: 我需要排序在选定日期发生。怎么做?

1 个答案:

答案 0 :(得分:1)

您有两种可能性:

一:专业/复杂的方式

您以unix格式提供日期的附加字段。 datepicker具有此选项以指定用于显示目的的字段(人类可读格式)和用于数据操作目的的字段。因为你需要发送这个请求,你必须告诉cdgridview包含其他(隐藏)字段。您可以通过为包含时间戳的附加字段提供css-class并将相同的类设置为cgridview(http://www.yiiframework.com/doc/api/1.1/CGridView#filterSelector-detail)的filterSelector属性来实现此目的。这样它将与ajax-request一起发送。

二:简单方法

在模型的搜索方法中,首先检查是否使用if (strpos($this->created, '.'))发送了一个人类可读的日期,并在将其与db值进行比较之前简单地解析它...绝对是更简单的方法!搜索方法中的完整代码可能如下所示:

public function search() {
    //parse date if necessary
    if (strpos(($this->created, '.')) {
        $this->created = CDateTimeParser::parse($this->created, 'dd.MM.yy');
    }

    $criteria = new CDbCriteria();

    //other compares...
    $criteria->compare('created', $this->created);
    //even more compares...

    return new CActiveDataProvider($this, array(
        'criteria'=>$criteria,
    ));
}

要查看所有解析格式,只需查看GitHub上的CDateTimeParser代码...您可以在课堂上找到所有内容 - 评论顶部:https://github.com/yiisoft/yii/blob/master/framework/utils/CDateTimeParser.php

希望它有所帮助!