Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem with CGridView in Yii.

If I use Table as the model, then the CGridView is working normally. It can be sorted and filtered.

But if I use View as the model, the CGridView can't be sorted..

Please help, Thanks

Below is my code

index.php

<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'unit-history-grid',
'cssFile' => Yii::app()->request->baseUrl . '/css/gridview.css',
'dataProvider'=>$model->search(),
'filter'=>$model,
'enableSorting'=>false,
'columns'=>array(
    'serial_no',
    'customer_name',
    'visit_count',
    'startup_serviceman',
    array(
        'header' => 'Startup Date',
        'name' => 'startup_date',
        'type' => 'raw',
        'value' => 'AppHelper::formatDate($data->startup_date)',
        'filter' => false,
    ),
    array(
        'header' => '',
        'type' => 'raw',
        'value' => '"<a href=\"'. Yii::app()->request->baseUrl .'/inquiry/unitHistory/visit/serial_no/". $data->serial_no ."\">History Visit</a>"',
    ),
    array(
        'header' => '',
        'type' => 'raw',
        'value' => '"<a href=\"'. Yii::app()->request->baseUrl .'/inquiry/unitHistory/spareParts/serial_no/". $data->serial_no ."\">History Recommended Parts</a>"',
    ),      
),
)); ?>

My model : ViewUnitHistory.php

    class ViewUnitHistory extends CActiveRecord
{
    /**
     * Returns the static model of the specified AR class.
     * @return ViewUnitHistory the static model class
     */
    public static function model($className=__CLASS__)
    {
        return parent::model($className);
    }
/**
 * @return string the associated database table name
 */
public function tableName()
{
    return 'view_unit_history';
}

public function primaryKey(){
    return 'serial_no';
}

/**
 * @return array validation rules for model attributes.
 */
public function rules()
{
    // NOTE: you should only define rules for those attributes that
    // will receive user inputs.
    return array(
        array('serial_no, customer_name', 'required'),
        array('serial_no', 'length', 'max'=>30),
        array('customer_name', 'length', 'max'=>100),
        array('visit_count', 'length', 'max'=>21),
        array('startup_date, startup_serviceman', 'safe'),
        // The following rule is used by search().
        // Please remove those attributes that should not be searched.
        array('serial_no, customer_name, visit_count, startup_date, startup_serviceman', 'safe', 'on'=>'search'),
    );
}

/**
 * @return array relational rules.
 */
public function relations()
{
    // NOTE: you may need to adjust the relation name and the related
    // class name for the relations automatically generated below.
    return array(
        'customerProduct' => array(self::BELONGS_TO, 'CustomerProduct', 'serial_no'),
        'userCreate' => array(self::BELONGS_TO, 'User', 'created_by'),
        'userModify' => array(self::BELONGS_TO, 'User', 'modified_by'),
    );
}

/**
 * @return array customized attribute labels (name=>label)
 */
public function attributeLabels()
{
    return array(
        'serial_no' => 'Serial No',
        'customer_name' => 'Customer Name',
        'visit_count' => 'Visit Count',
        'startup_date' => 'Startup Date',
        'startup_serviceman' => 'Startup Serviceman',
    );
}

/**
 * Retrieves a list of models based on the current search/filter conditions.
 * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions.
 */
public function search()
{
    // Warning: Please modify the following code to remove attributes that
    // should not be searched.

    $criteria=new CDbCriteria;

    $criteria->compare('t.serial_no',$this->serial_no,true);
    $criteria->compare('t.customer_name',$this->customer_name,true);
    $criteria->compare('t.visit_count',$this->visit_count,true);
    $criteria->compare('t.startup_date',$this->startup_date,true);
    $criteria->compare('t.startup_serviceman',$this->startup_serviceman,true);

    $user = User::model()->findByPk(Yii::app()->user->getState('user_id'));
    if ($user->branch_id != NULL) {
        $criteria->addCondition('a.branch_id = ' . $user->branch_id);
    }

    $criteria->with = array(
        'customerProduct.customer' => array('alias'=>'a'),
    );

    return new CActiveDataProvider(get_class($this), array(
        'criteria'=>$criteria,
        'sort'=>array(
            'attributes'=>array(
                'serial_no'=>array(
                    'asc'=>'t.serial_no',
                    'desc'=>'t.serial_no DESC',
                ),
                'customer_name'=>array(
                    'asc'=>'t.customer_name',
                    'desc'=>'t.customer_name DESC'
                ),
            ),
        ),
    ));
}
}

Below is actionIndex function in my Controller

/**
     * Lists all models.
     */
    public function actionIndex()
    {
        $model=new ViewUnitHistory('search');
        $model->unsetAttributes();  // clear any default values
        if(isset($_GET['ViewUnitHistory']))
            $model->attributes=$_GET['ViewUnitHistory'];

        $this->render('index',array(
            'model'=>$model,
        ));
    }
share|improve this question
as a model means? – Afnan Bashir Mar 8 '12 at 20:26
What I meant is that I use Database View, not table as the model (CActiveRecord) in Yii. – Riko Nagatama Mar 9 '12 at 4:51
some code you are writing may help here – Afnan Bashir Mar 9 '12 at 13:28
ok, i've edited my question above – Riko Nagatama Mar 10 '12 at 1:49

1 Answer

brother can i see controller? basically what I think issue is that you use this view with your model. BUT you replace it with your fact table or database view. Now what happens that there are not all columns present in that Db view that you are pointing in CGRidView

share|improve this answer
hi Afnan, i've added part of my controller code. – Riko Nagatama Mar 13 '12 at 2:25
are you sorting by clicking header of CGrid – Afnan Bashir Mar 13 '12 at 15:43
yups, that's what I meant. The header can't be clicked and I don't know why – Riko Nagatama Mar 14 '12 at 1:44
well i cant figure it out either:( – Afnan Bashir Mar 14 '12 at 6:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.