1

我有一个问题,我已经解决了除一个 cgridview 过滤器之外的所有问题,这是一个相关领域。

我正在使用 Seenivasan 提供的解决方案,但相关字段状态未添加到字符串中。

这是 cgridview :-

$this->widget('zii.widgets.grid.CGridView', array(
    'id'=>'tbl-orders-grid',
    'dataProvider'=>$dataProvider,
    'afterAjaxUpdate'=>"function() {
                                                jQuery('#Orders_date_first').datepicker(jQuery.extend({showMonthAfterYear:false}, jQuery.datepicker.regional['id'], {'showAnim':'fold','dateFormat':'yy-mm-dd','changeMonth':'true','changeYear':'true','constrainInput':'false'}));
jQuery('#Orders_date_last').datepicker(jQuery.extend({showMonthAfterYear:false}, jQuery.datepicker.regional['id'], {'showAnim':'fold','dateFormat':'yy-mm-dd','changeMonth':'true','changeYear':'true','constrainInput':'false'}));
                                                }",

'filter'=>$model,
'columns'=>array(
    array(
        'name'=>'id',
        'type'=>'raw',
        'value'=>'str_pad($data->id,8-strlen($data->id),"0",STR_PAD_LEFT)',
        'htmlOptions'=>array('style' => 'text-align: right;width: 60px;')
    ),
    array(
            'name'=>'date_order_placed',
            'filter'=>$dateisOn,
            'value'=>'date("d-m-Y",strtotime($data->date_order_placed))',
            ), 
    array(
      'name'=>'status',
      'type'=>'raw',
      //'htmlOptions'=>array('id' => 'order_status_search'),
      'value'=>'CHtml::value($data,"status.orders_status_name")',
      'filter'=>CHtml::listData(OrderStatus::model()->findAll(
                  array(
                   'select'=>array('orders_status_name'),
                   'distinct'=>true

                  )),"orders_status_name","orders_status_name")//this is the focus of your code

   ),

    array(
        'class'=>'EButtonColumnWithClearFilters',
         'clearVisible'=>true,
        'template'=>'{view}{email}',
        'buttons'=>array
        (
            'email' => array
            (
                'label'=>'Reprint invoice and email to yourself',
                'imageUrl'=>Yii::app()->request->baseUrl.'/images/email.png',
                'url'=>'Yii::app()->createUrl("orders/ureprint", array("id"=>$data->id))',


            ),

        ),
    ),
),
)); ?>

这是将当前过滤器值添加到 url 的 php 和 js。

echo CHtml::button('List Orders',array('id'=>'listelement'));

Yii::app()->clientScript->registerSCript('test','
$("body").on("click","#listelement",function(){
        var str="&";
    $.each($("#tbl-orders-grid input").serializeArray(),function(i,j){
            str=str+j.name+"="+j.value+"&";

            });


            window.location="'.CHtml::normalizeUrl(array('orders/index')).'"+str;
    });

');

其他过滤器、日期和 id 可以完美运行。它们被添加到上面的 url。状态不是。

4

1 回答 1

0

1-您需要在模型 serach() 方法中定义新过滤器,例如

 $criteria->compare('Restaurant.Name',$this->Name,true);  

Restaurant 是您的关系键,名称:与此 fk 相关的另一个表中的值

2-您必须添加 gridview 列的值,例如:

看法:

array(
          'name' => 'Restaurant.Name',
          'header' => 'Username',
          'filter' => CHtml::activeTextField($model, 'name'),
          'value' => '$data->Restaurant->Name',

此链接将帮助您 yii CGridView 过滤器与关系

于 2013-01-27T14:56:39.020 回答