Hi guys,
I am struggle with one thing: I have a listing with a search input above. I want to keep that list always loading from the URL, without browser cache. Is that possible?
For any extra clarification, here is it:
App.IndexCrmIndexRoute = Ember.Route.extend({
model: function(params) {
// ... parses the params
var data = this.store.find('account', params);
return data;
},
})