I have a ViewModel
where I retrieve data from the server and that new data is concatenated with the data I already have. The problem is, the new data goes after the old data and I want it the other way around so the fresh data shows at the top of the view.
This is what I have:
self.serverData(self.serverData().concat(newData));
and the view is displayed as:
- old data
- old data
- old data
- new data