Hello Steve,
The list view uses the same template expressions as all other widgets.
Straight to the issues that I noticed in your example:
There is
no field Date in your data, that is why the template renders
function Date() { [native code] }
The string
"/Date(1224043200000)/" is not a valid JavaScript date and as a result the dataSource interprets it as a string. For that reason you will not be allowed to format it as a date.
Once you have a valid JavaScript date objects in the dataSource, you could format them inside the template through the
kendo.toString function as I explained in my previous reply.
For convenience I have modified your Fiddle -
http://jsfiddle.net/valchev/9mrsJ/10/
Kind regards,
Alexander Valchev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework -
download Kendo UI now!