I have a radgrid with a column of datatype datetime. I have the below formatting:
If TypeOf e.Column Is GridBoundColumn Then
Dim column As GridBoundColumn = e.Column
If e.Column.DataType.ToString() = "System.DateTime" Then
column.DataFormatString = "{0:MM/dd/yyyy}"
End If
End If
But some rows have no values(empty values) for that column.
I want to be able to skip formatting for those rows with empty vales / null values.
How do I do it?
