hi
How do i export to PDF with AlternatingItemStyle background Color?
here is my code and i m stuck here. Thanks
How do i export to PDF with AlternatingItemStyle background Color?
here is my code and i m stuck here. Thanks
If TypeOf e.Item Is GridDataItem Then
Dim item As GridDataItem = DirectCast(e.Item, GridDataItem)
For Each cell As TableCell In item.Cells
cell.Style(
"text-align") = "left"
cell.Style(
"font-size") = "10pt"
item.BackColor = RadGrid1.MasterTableView.AlternatingItemStyle.BackColor
Next
End If