Posted 08 Jan 2013 Link to this post
foreach
(DayBE _dayBE
in
_days.OrderBy(x => x.date).ToList())
{
string
headerText = _dayBE.date.ToString(
"dd-MMM"
);
GridViewDataColumn gvdc =
new
GridViewDataColumn() { IsReadOnly=
false
, Header = headerText, DataMemberBinding =
Binding(
"period"
) { Converter =
GridFormatter(), ConverterParameter =
List<
object
>() { _dayBE.date } } };
radGridView.Columns.Add(gvdc);
}
Posted 11 Jan 2013 Link to this post
Posted 17 Jan 2013 Link to this post
Can you post more info about the period property?
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
The grid cannot edit list properties by default. You need to set for this column your own CellEditTemplate with desired editor for lists.
You can check this demo to know more about how to specify CellEditTemplate.