Re: [SailfishDevel] What's the correct way to do this?

2015-06-06 Thread Kimmo Lindholm
...@lists.sailfishos.org] käyttäjän Amilcar Santos [amilcar.san...@gmail.com] puolesta Lähetetty: 5. kesäkuuta 2015 20:58 Vastaanottaja: Sailfish OS Developers Aihe: Re: [SailfishDevel] What's the correct way to do this? It may be a name collision between carDetails.model (from the database

Re: [SailfishDevel] What's the correct way to do this?

2015-06-06 Thread Andrey Kozhevnikov
If you need just some fields from model you can pass them to parameters, instead of whole model. Other way would be parsing model inside onClicked handler. Or use kimmoli suggestion and implement get or getModel method on model class for returning const QVariantMap. 05.06.2015 21:06, Chris

Re: [SailfishDevel] What's the correct way to do this?

2015-06-05 Thread Amilcar Santos
It may be a name collision between carDetails.model (from the database) and ListView.model (Qml delegate implemention).. Try renaming the 'model' colunm in the 'car' table Bg, Amilcar 2015-06-05 18:35 GMT+01:00 Krisztian Olah fasza2mob...@gmail.com: You are passing a carmodel as an argument to

Re: [SailfishDevel] What's the correct way to do this?

2015-06-05 Thread Krisztian Olah
You are passing a carmodel as an argument to carpassDetails, chances are you did not define member named id or register in carmodel, but probably that's not want to do anyway. You seem to expect carDetails to be some different type, I did not find any definition to its type other than it being

[SailfishDevel] What's the correct way to do this?

2015-06-05 Thread Chris Walker
Perhaps somebody can either help me with this one or point me to some docs that tell me the correct way to do it. I want to pass several bits of information to another qml page. I've looked at the various pages and they only tell me how to pass variables not how to set them up in the first place

Re: [SailfishDevel] What's the correct way to do this?

2015-06-05 Thread Chris Walker
On Fri, 5 Jun 2015 16:53:22 + Krisztian Olah fasza2mob...@gmail.com wrote: It looks like the object carDetails does not exist in the scope you're trying to access it. What scope is your carDetails object in? If you could briefly describe in which file each relevant function/object

Re: [SailfishDevel] What's the correct way to do this?

2015-06-05 Thread Krisztian Olah
It looks like the object carDetails does not exist in the scope you're trying to access it. What scope is your carDetails object in? If you could briefly describe in which file each relevant function/object reside, would be helpful. On Fri Jun 5 17:06:05 2015 GMT+0100, Chris Walker wrote: