Data Storage and manipulation
We need a way to define/create arrays or a dictionary to be used as a datasource without having to make a REST call or load a local JSON.
Simple use case - the ubiquitous MVC To-Do app. You have a text input and each time you type an item and hit return (or press a button), it adds the inputField.text to the list. (Or more precisely, it adds it to the Array that is used as the datasource for the list (Tableview or Collection)).
For the datasource object, a key could be added to "source": "remote/local/memory" where memory would indicate a JSON being created as I described above.
Alternatively, locally loaded JSON's could be set as read-only, or read/write...
In a nutshell:
- [x] Properly appending JSON to a datasource using pagination
- [ ] Storing data as session variable and appending new data. [discussion] should this be implemented as a new
$dataobject? - [ ] Using session variables as datasources for tables
- [ ] Support for scalability through CoreData and offline data storage ("LocalStorage")