Permalink
Please sign in to comment.
Browse files
Add an attachments ListModel to Bill objects
We need to use various workaround as: - u1db load models in ListModel and any array property (like attachments) are transformed in a ListModel - however, we can't store directly a ListModel (containing ModelObject) to u1db as it's transformed as null in the sqlite lite database
- Loading branch information...
Showing
with
51 additions
and 4 deletions.
| @@ -0,0 +1,7 @@ | ||
| +import QtQuick 2.4 | ||
| + | ||
| +// this show how to create component dynamically | ||
| +Component { | ||
| + ListModel { | ||
| + } | ||
| +} |
0 comments on commit
9d1e721