Search code examples
c#asp.netlistviewitemdatabound

ListView ItemDataBound - determine if item is AlternatingItem?


I'm using the Listview to display my data. On the ItemDatabound event I want to do some manipulation and change some of the data being displayed. When I check the Item on this event I am using the following code, But I need to know if the item is an alternating item as this will effect what I want to do with the row. Can anyone point me in the right direction?

if (e.Item.ItemType == ListViewItemType.DataItem)
{
   ListViewDataItem currentItem = (ListViewDataItem)e.Item;
   DataKey currentDataKey = myLilstView.DataKeys[currentItem.DataItemIndex];

   //Do something   
}

Solution

  • see if this works:

    int currentIndex = currentItem.DisplayIndex;
    if (currentIndex % 2 == 1)
    {
        // alternating item
    }