blob: 772804b39d9acd40e4ec6ae7e2cdcf78c9ce69c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
..
---------------------------------------------------------------------------
Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
All rights reserved.
This work, unless otherwise expressly stated, is licensed under a
Creative Commons Attribution-ShareAlike 2.5.
The full license document is available from
http://creativecommons.org/licenses/by-sa/2.5/legalcode .
---------------------------------------------------------------------------
Storing Data and Adding Pages
=============================
In the two previous chapters, we have seen how to use the Qt Quick Component for Symbian^3 to build a simple prototype. This chapter details the steps needed to make an almost complete version of our `TodoList` application. We will add some extra functionality for adding, editing and deleting an item from the list. Also we will replace the JavaScript test data with data from a persistent store based on the :qt:`Offline Storage API <qdeclarativeglobalobject.html#offline-storage-api>`.
.. note::
You will find the implementation related to this chapter in the `Todolist_complete_src.zip` file provided in the :ref:`get-source-code` section.
.. toctree::
:maxdepth: 1
step_01
step_02
step_03
step_04
step_05
|