Re: [qooxdoo-devel] Resource URL differences.

2014-01-08 Thread Simon White
This was solved in my "Wrong Image URL's" post. On 07/01/2014 4:47 PM, dcipher wrote: > Hi > > This is an an update to my previous post about wrong image urls. > > In my application the the URL for scripts files is correct but incorrect for > the images. I created two virtual directories that poi

Re: [qooxdoo-devel] Splash screen in qooxdoo mobile

2014-01-08 Thread Christopher Zündorf
Instead of adding it to the scrollContainer via "this.getContent().add()" Just use this method: http://demo.qooxdoo.org/current/apiviewer/#qx.ui.mobile.page.NavigationPage~addAfterNavigationBar!method_public addAfterNavigationBar() places the image before the content which scrolls. Greetz Chr

[qooxdoo-devel] Răspuns: Part ignored

2014-01-08 Thread tedi tedi
I found this http://stackoverflow.com/questions/13211499/qooxdoo-how-to-force-generate-py-to-include-a-part but it does not help ... Could someone help me ? Thank you! În Miercuri, 8 Ianuarie 2014 17:49:10, tedi tedi a scris: Hello, I get this error when I try to generate my app: "Part #

[qooxdoo-devel] Solved: Wrong Image URLs

2014-01-08 Thread dcipher
Yes that was the problem and everything works fine. Thank-you very much I am not sure I would have noticed the missing asterisks. Simon -- View this message in context: http://qooxdoo.678.n2.nabble.com/Wrong-Image-URLs-tp7585120p7585150.html Sent from the qooxdoo mailing list archive at Nabb

Re: [qooxdoo-devel] Splash screen in qooxdoo mobile

2014-01-08 Thread alexey.petrenko
One more question, please... On the 1st screen of the design sheet I have a big orange image near the top of the screen. How to disable scrolling for this image? I used the following code to add it: var layout = new qx.ui.mobile.layout.VBox().set({alignY: 'middle'}); var container =

Re: [qooxdoo-devel] Wrong Image URLs

2014-01-08 Thread Richard Sternagel
This should have been: > Try to convert your comments and trigger a new "./generate.py source" >"./generate.py build". Try to convert your comments and trigger a new "./generate.py source" *or* "./generate.py build" (whatever you are currently at). Regards Richard --

Re: [qooxdoo-devel] Wrong Image URLs

2014-01-08 Thread Richard Sternagel
Hi dcipher, a co-worker of mine (thanks Christian!) probably found the culprit! You posted this: > /* > @asset(dcbase/*) > */ Which should be (JS comment vs. JSDoc comment): /** * @asset(dcbase/*) */ My "Application.js" contains this: /** * This is ... of your custom application "ml_7ja

[qooxdoo-devel] Part ignored

2014-01-08 Thread tedi tedi
Hello, I get this error when I try to generate my app: "Part #modunu is ignored in current configuration" This is config.json: {     "name"    : "CVSIWAGUI",     "include" :     [         {             "path" : "${QOOXDOO_PATH}/tool/data/config/application.json"         }     ],     "export" :

Re: [qooxdoo-devel] Data and image caching between launches (mobile application)

2014-01-08 Thread Christopher Zündorf
Hi, 1) yes that it easily possible. Have a look at the storage API: http://manual.qooxdoo.org/2.1/pages/website/storage.html 2) As the app runs in a browser, the mobile browser should handle this. I do not think that you have to cache image by yourself. If you want to reduce the amount of re

[qooxdoo-devel] Data and image caching between launches (mobile application)

2014-01-08 Thread alexey.petrenko
If possible I want to do two things in my mobile applications: 1) cache some data (e. g. json strings) between app launches. What is the best approach to do this (use cookies, html5 local storage, some qooxdoo classes)? 2) cache jpeg/png images between launches to save some traffic. Is it possible

Re: [qooxdoo-devel] Wrong Image URLs

2014-01-08 Thread dcipher
Hi These are my URIs which appear correct to me. var libinfo = {"__out__":{"sourceUri":"script"},"dcbase":{"resourceUri":"../../dcbase/source/resource","sourceUri":"../../dcbase/source/class"},"kardpoll":{"resourceUri":"../source/resource","sourceUri":"../source/class"},"qx":{"resourceUri":"../..

Re: [qooxdoo-devel] Wrong Image URLs

2014-01-08 Thread Richard Sternagel
Hi dcipher, what's your generated "resourceUri"? It's the base URI for the resource retrieval which is concatenated with the resource id you are using within your code. These are mine (you also see the sourceUri for the JS class retrieval you mentioned): source version: === source/

Re: [qooxdoo-devel] Splash screen in qooxdoo mobile

2014-01-08 Thread alexey.petrenko
Thank you, czuendorf, the flat theme looks really pretty) -- View this message in context: http://qooxdoo.678.n2.nabble.com/Splash-screen-in-qooxdoo-mobile-tp7585123p7585141.html Sent from the qooxdoo mailing list archive at Nabble.com. -

Re: [qooxdoo-devel] Splash screen in qooxdoo mobile

2014-01-08 Thread Christopher Zündorf
Hi, This should work on WP8, Android, iOS and in desktop browsers. Is the qooxdoo a correct tool for such a task? Is there any internal restrictions that wont let me to implement this design? Yes, qooxdoo is the right tool for that use case. I had a look on your screenshot and I see no problems