Going from dummy to real data
I was writing about my current QML project earlier and now was the time to go from dummy data to real ones. For the prototyping phase we were using models created with ListModel and the attributes we need in the UI. For some JavaScript code that is called to execute actions we were using ListModel.get(index) to get the item and then execute code. The QML Documentation was bringing me very far. I was using the rootContext of the QDeclarativeView to…