Ok so the data object I have to bind to (remote data, have no control over it) has a property called "Date", and since it's also sending me dates in ISO format I need to do one of these
#= kendo.toString(new Date(data.Date), 'hh:sstt') #
However the error thrown is "Date is not a function"
I do this same thing in another similar object whos date property is PublishedDate (not "Date") and the above code works fine...so I assume its the ambiguous naming.
Is there anything I can do outside of telling telligent community server to change their REST API :)
#= kendo.toString(new Date(data.Date), 'hh:sstt') #
However the error thrown is "Date is not a function"
I do this same thing in another similar object whos date property is PublishedDate (not "Date") and the above code works fine...so I assume its the ambiguous naming.
Is there anything I can do outside of telling telligent community server to change their REST API :)