Skip to content
Advertisement

CListView in Yii Framework

I have started working on yii framework and I am following the yii blog tutorial to learn basics of yii framework in this tutorial they have used a ClistView in posts view but i am getting an exception enter image description here


This is the code that i have used in view file:

JavaScript

This is what my PostsController contains:

JavaScript

I can’t find out where I am doing wrong.

Advertisement

Answer

The dataProvider property of a CListView should be a CActiveDataProvider (or a different data provider). Try

JavaScript

instead.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement