Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Dynamic colors in grid rows
Message
From
06/07/2004 09:42:55
 
 
To
23/06/2004 17:38:59
General information
Forum:
ASP.NET
Category:
WebForms
Miscellaneous
Thread ID:
00916648
Message ID:
00920998
Views:
12
Rick,

I'm not sure if this is what you are looking for but here it is. This will evaluate the field Color_Code and if the value = 1 it will make column 0 in that row red.


In the Grids ItemCreated event

If e.Item.DataItem Is Nothing Then Exit Sub

If e.Item.ItemType = ListItemType.Item OrElse e.Item.ItemType = ListItemType.AlternatingItem Then

If DataBinder.Eval(e.Item.DataItem, "Color_Code") = 1 Then
e.Item.Cells(0).ForeColor = System.Drawing.Color.Red
'could add code here to make entire row red instead of the first column
End If
End If

End Sub
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform