As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
When I pass a javascript date object in, I just get an error and the page won't load. If I pass in a string, it doesn't seem to recognize the text as a date.
The problem is that the Kinvey Ember.js Model REST Adapter doesn't store the dates in ISO format, they store them in the toString format. Are you guys planning on fixing this in the REST adapter?
M
Mark
said
about 9 years ago
I see the problem now. Yes, this will be fixed in the REST adapter.
Leo Chang
App.Log = Kinvey.Model.extend({
date: DS.attr('date'),
});
How do I query these dates? This doesn't seem to work:
var query = new Kinvey.Query();
query.greaterThanOrEqualTo('date', moment().subtract(7, 'days').toDate().toString() );
this.store.find('log',query);
When I pass a javascript date object in, I just get an error and the page won't load. If I pass in a string, it doesn't seem to recognize the text as a date.