I have an application where I populate the RadGrid from a CSV file (ie using it in unbound mode). I define the columns as
etc
and populate them using
Dim dt As New DataTable()
dt.Columns.Add("Date")etc
and populate them using
Value = {Dte$, Item$, Type$, Recordid$}
dt.Rows.Add(Value)
All this works fine.
I now need to add a checkbox and image column. Can you direct me to a sample. I was not able to find any.
Thanks
Allen