Re: [SailfishDevel] Prototype 'TextBaseItem' from 'TextBase' could not be resolved (M301)

2014-06-18 Thread i...@flyingfischer.ch
Just in case any body else runs into the error (process:957): dconf-CRITICAL **: unable to open file '/etc/dconf/db/vendor': /etc/dconf/db/vendor: invalid gvdb header; expect degraded performance I got this error only with the VirtualBox OSE (Open Source Edition) on Ubuntu. That's how I

Re: [SailfishDevel] Prototype 'TextBaseItem' from 'TextBase' could not be resolved (M301)

2014-06-17 Thread i...@flyingfischer.ch
Thanks Juha for checking this out! This helps me to circle the issue... Yes I am using the Sailfish OS Emulator right now. Not much to deploy to the phone right now. I will set up the IDE on a different box and try out different versions of Virtualbox. Best regards Markus

Re: [SailfishDevel] Prototype 'TextBaseItem' from 'TextBase' could not be resolved (M301)

2014-06-15 Thread i...@flyingfischer.ch
No, it comes from the new version of the IDE. The App is early stage, never been depolyed to a real phone yet. The IDE is running on Kubuntu 14.04 in 64 bit. There are a bunch of other new warnings in this version of the Sailfish QT Creator (see below). Out of which this debug message is very

Re: [SailfishDevel] Prototype 'TextBaseItem' from 'TextBase' could not be resolved (M301)

2014-06-14 Thread i...@flyingfischer.ch
' of undefined I tried different things like, cleaning the project, crating a new project and copying the pages into it. Am I missing some dependencies? I work on Ubuntu 64 bit. Markus Am 13.06.2014 10:01, schrieb i...@flyingfischer.ch: Hello The IDE gives me en error on the TextField element. I

Re: [SailfishDevel] Prototype 'TextBaseItem' from 'TextBase' could not be resolved (M301)

2014-06-14 Thread i...@flyingfischer.ch
...it's a local project. I try to set it up on a repository get back to the list. My learning steps go public... ;-) Thanks for your patience Markus Am 14.06.2014 09:35, schrieb Andrey Kozhevnikov: you need to show your code :) 14.06.2014 13:34, i...@flyingfischer.ch пишет: I wonder

Re: [SailfishDevel] Prototype 'TextBaseItem' from 'TextBase' could not be resolved (M301)

2014-06-14 Thread i...@flyingfischer.ch
You can take a look at the code here: https://github.com/flyingfischer/SC-App Early stage, not much of real functionality in it yet... Thanks for any inputs! Markus Am 14.06.2014 09:35, schrieb Andrey Kozhevnikov: you need to show your code :) 14.06.2014 13:34, i...@flyingfischer.ch пишет

[SailfishDevel] Prototype 'TextBaseItem' from 'TextBase' could not be resolved (M301)

2014-06-13 Thread i...@flyingfischer.ch
Hello The IDE gives me en error on the TextField element. I couldn't find anything to resolve it. Thank you for your inputs! Markus [Translated to english from the german error message:] Prototype 'TextBaseItem' from 'TextBase' could not be resolved (M301) This is the page structure I use:

Re: [SailfishDevel] pageStack.pop() - send paramater to prev page

2014-06-06 Thread i...@flyingfischer.ch
Thank you Andrey and Mikko for your very valuable ideas. This will help me finding my way through QT and JS. Markus ___ SailfishOS.org Devel mailing list To unsubscribe, please send a mail to devel-unsubscr...@lists.sailfishos.org

[SailfishDevel] Retrieve paramater from prev page on next page

2014-06-05 Thread i...@flyingfischer.ch
Caution, truely a beginners question... Hello I am stuck on retrieving information from a previous page in the next page. This is what I try to do: Send a parameter to nextPage by onClicked: pageStack.push(Qt.resolvedUrl(nextPage.qml, {topic: myTopic})) Try to retrieve the parameter on

Re: [SailfishDevel] Retrieve paramater from prev page on next page

2014-06-05 Thread i...@flyingfischer.ch
Autsch! Thanks! Works like a charm! ;-) Markus Am 05.06.2014 10:07, schrieb Andrey Kozhevnikov: onClicked: pageStack.push(Qt.resolvedUrl(nextPage.qml), {topic: myTopic}) second parameter should pass to push, not resolvedUrl function 05.06.2014 14:05, i...@flyingfischer.ch пишет: onClicked

[SailfishDevel] pageStack.pop() - send paramater to prev page

2014-06-05 Thread i...@flyingfischer.ch
Beginners follow up question Hello while transfering parameters works fine with pageStack.push(Qt.resolvedUrl(nextPage.qml, {topic: myTopic})) there seems not to be any method like this in pageStack.pop() How can I give back a parameter from the top of the stack to the previous page?

Re: [SailfishDevel] pageStack.pop() - send paramater to prev page

2014-06-05 Thread i...@flyingfischer.ch
{ onClicked: { parentPage.topic = Test; pageStack.pop(); } } - Mail original - De: i...@flyingfischer.ch À: Sailfish OS Developers devel@lists.sailfishos.org Envoyé: Jeudi 5 Juin 2014 15:19:38 Objet: Re: [SailfishDevel

Re: [SailfishDevel] pageStack.pop() - send paramater to prev page

2014-06-05 Thread i...@flyingfischer.ch
); } } On 05.06.14 14:43, i...@flyingfischer.ch wrote: Thanks for your inputs! Calling PreviousPage.topic = MyTopic; pageStack.pop(); gives me a ReferenceError: PreviousPage is not defined. PreviousPage.qml and property string topic do exist. Thanks for your patience! Markus