In ItemDataBound I do this:
Private Sub grdSummary_ItemDataBound(sender As Object, e As GridItemEventArgs) Handles grdSummary.ItemDataBound '**************
For Each item As GridHeaderItem In grdSummary.MasterTableView.GetItems(GridItemType.Header)
For intLcv = 2 To item.Cells.Count - 1
If IsDate(item.Cells(intLcv).Text) And Not item.Cells(intLcv).Text.Contains(vbCrLf) Then
item.Cells(intLcv).Text = item.Cells(intLcv).Text & vbCrLf & CDate(item.Cells(intLcv).Text).ToString("ddd").ToString
End If
Next
Next
End Sub
The problem is the Date and day are right next to each other. I need about 1-2 px between
Is there any way to do this? I have attached a screen shot.