using EColumnListView extension

Hello All!

im new to Yii and this is my first post as a yii developer.Pros here might think that This is the most Stupid Question ever.But not for me so please help me out.

i want to use EColumnListView Extension.I Downloaded the Extension and placed the file in extensions directory of my application and used the following code in my view file

<?php $this->widget(‘ext.EColumnListView’, array(

'dataProvider'=&gt;&#036;dataProvider,


'itemView'=&gt;'_view',


'columns'=&gt;3,

)); ?>

and when i view the page it throws the following exception

Property "EColumnListView.itemsTagName" is not defined.

can anyone please tell me what im doing wrong here?

just copy EColumnListView.php into /YourProjectFolder/framework/zii/widgets

note:if you did not copy framework folder to your project folder then it will found in yii folder

and now say in your index.php like this,

<?php $this->widget(‘zii.widgets.EColumnListView’, array(

'dataProvider' =&gt; &#036;dataProvider,


'itemView' =&gt; '_view',


'columns' =&gt; 3

));?>

now it should work…