Format DateTime in Kendo UI Grid using ASP.Net MVC Wrapper

Format DateTime in Kendo UI Grid using ASP.Net MVC Wrapper

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 }") ;








ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^