Re: Datagrid Style Question
Hi,
one way is in ItemCreated event (or with GridView in RowCreated event),
trying top set styles directly at the cells. For example:
Protected Sub DataGrid1_ItemCreated(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemCreated
If e.Item.ItemType = ListItemType.Item OrElse e.Item.ItemType =
ListItemType.AlternatingItem Then
e.Item.Cells(0).Style("border-left") = "10px solid red"
End If
End Sub
--
Teemu Keiski
AspInsider, ASP.NET MVP
http://blogs.aspadvice.com/joteke
http://teemukeiski.net
"Bill Rossi" wrote in message
news:f8atcj$jss$1@s0b1a68.ssa.gov...
>I would like to have the line between certain columns in my datagrid darker
>or a different color than the other lines between columns. Does anyone
>know how to accomplish this? Thanks in advance.
>
> Bill Rossi
>
>
>
Date:Wed, 1 Aug 2007 20:13:58 +0300
Author:
|