I'm using CActiveDataProvider and CListView to output a list of names. I want to bold the name using html only when the name is the same as the name directly previous to it. These are not identical rows in the database, only the 'name' attribute is the same.
For example, I want the following:
Bob
Rick
Steve
Rick
Rick
George
Since I'm using CListView, I'm creating my partial view using information from $data, which contains the current list item. How do I access attributes from the previous list item?
Thanks Yii veterans of the world!