columns.Bound(p => p.StartDate).Format("{0: yyyy-MM-dd}").Title("Datum");
columns.Bound(p => p.StartDate).Format("{0:hh:mm}").Title("Tid");
Is there some way that i can name 2 colums that are the same? Like this
columns.Bound(p => p.StartDate).Format("{0: yyyy-MM-dd}").Title("Datum").ID("Date");
columns.Bound(p => p.StartDate).Format("{0:hh:mm}").Title("Tid").ID("Time");
and then use them in a template file like:
#= Time #
#= Date #