I am trying to turn a date field only into a date field, but it does not work.
I have:
schema: { model: { id: 'id', fields: { dateCreated: { type: "date", format: "{0:yyyy/MM/dd HH:mm}", editable: "false" }, ... } }
But this does not work, the date is displayed correctly, but the time ends 00:00.
If I changed the type of the field to "string", the data will be displayed correctly, but the format of SQL ie is formatted:
2012-05-11 12:56:29
There is no such type of field as "date-time", only "date". How can I get this for output as I want? i.e:
11/05/2012 12:56
Does anyone have any idea?
jquery kendo-ui kendo-grid
imperium2335
source share