Home All Groups Group Topic Archive Search About

gridview rowdatabound change cssclass and selectedrowstyle cssclass help

Author
10 May 2007 12:52 PM
Peter
Hello All

I was wondering if someone can help me out with this

I added a piece of code to change the background color on a gridview row
based on some criterias.

The code works great, but my problem is that my selectedrowstyle doesn't
work anymore.
I set my gridview properties to selectedrowstyle->cssclass->gridselecteditem

Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.GridViewRowEventArgs) Handles
GridView1.RowDataBound
         If e.Row.RowType = DataControlRowType.DataRow Then
             Dim fd As dataSet.fdRow = CType(CType(e.Row.DataItem,
Data.DataRowView).Row, DataSet.fdRow)
             If fd IsNot Nothing Then
                 If Not fd.IsapprDtNull Or Not fd.IsapprDtNull() Then
                     e.Row.CssClass = "highlightClosed"
                 End If
             End If
         End If
     End Sub

How can I get around this

Thanks
Peter