This question is locked. New answers and comments are not allowed.
My Html.Telerik().Grid when set to databinding.Ajax the following happens:
.Columns(columns =>
{
columns.Bound(o => o.Created)
.Title(" ");
})
Results in: 4/15/2011 8:55:53 AM
However,
.Columns(columns =>
{
columns.Bound(o => o.Created)
.ClientTemplate("<#= Created #>")
.Title(" ");
})
Results in: Fri Apr 15 2011 08:55:53 GMT-0400 (Eastern Daylight Time)
How do I format <#= Created #> to equal 4/15/2011 8:55:53 AM