item number along with each item listed in view using CActiveDataProvider CLIstVew

Hi,

How to show item number along with each item listed using CActiveDataProvider and CListView.

If there are 20 item gets listed by using CActiveDataProvider on my page then each item should start with a number e.g.

item 1)

<item fields>

item 2)

<item fields>

item 3)

<item fields>

. . .

. . .

item 19)

<item fields>

item 20)

<item fields>

How to achieve that…?

Thanks in advance…!

You can edit your _view.php file.

The item number is available as $index (zero based, so you need $index+1)

Thanks :)