Datagrid Style Question

B

Bill Rossi

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
 
T

Teemu Keiski

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,901
Latest member
Noble71S45

Latest Threads

Top