columns.Bound(p => p.CreatedDate).ClientTemplate("#=
kendo.toString(kendo.parseDate(CreatedDate), 'dd-MM-yyyy hh:mm tt') #");
OR
template = #: kendo.toString(CreatedDate,
' dd-MM-yyyy hh:mm tt ')
OR
columns.Bound(p =>
p.CreatedDate).Title("Created Date").Format("{0:" + System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.ShortDatePattern
+ "}");
OR
columns.Bound(p =>
p.CreatedDate).Title("CreatedDate").Format("{0: dd-MM-yyyy hh:mm tt }") ;