[qooxdoo-devel] download function

2011-09-22 Thread John de la Garza
I have done some reading about http downloads. One way is to set a header like Content-Disposition. I would like my download to not be under the websever's root for security reasons. I'd have an rpc call that authenticates the user then returns the data to my qooxdoo app. I tried a window.open

Re: [qooxdoo-devel] IE9 issues pertaining to buttons

2011-09-22 Thread Jim Hunter
Well, that resulted in a slightly different look, but still not fixed. See the slightly changed look below: It doesn't matter what combination of Browser Mode / Document Mode I set IE to, as long as it is in IE9 it doesn't work. Setting the Browser mode to IE8 or IE7 renders fine. Thanks, Jim

Re: [qooxdoo-devel] setBackgroundColor on window childcontrols

2011-09-22 Thread Christian Hagendorn
Hi, the problem is the decorator from the "captionbar". Setting the background color has no effect, because you can't see it. Your example uses the modern theme. The modern theme uses for the "captionbar" two different decorators one uses CSS linear-gradient and border-radius for modern browse

Re: [qooxdoo-devel] How to debug changeSelection issue on SelectBox

2011-09-22 Thread Felipe Delgado
On 9/21/11 3:03 AM, Gabriel Munteanu wrote: > firing the event on hovering the third element seems pretty strange. I can't > reproduce it, so maybe there is something in your code that does this. Yes, pretty strange indeed. I should have said "third element onwards" but I guess that doesn't help

[qooxdoo-devel] setBackgroundColor on window childcontrols

2011-09-22 Thread manwhojaped
Hi everybody, I would like to set the background color(s) of an instanced window thus: var win = new qx.ui.window.Window("First Window"); win.setWidth(300); win.setHeight(200); this.getRoot().add(win, {left:20, top:20}); win.open(); win.setShowStatusbar(true); win.getChildControl("statusbar").s

Re: [qooxdoo-devel] How to ensure Model Changes get saved to remote database?

2011-09-22 Thread Simon White
Hi I will create my own method for saving the data based on your suggestion. One thing is not clear to me; do changes made in the model get sent back to the store automatically? I am trying understand the data flow. First the store gets the data from the remote source. Using binding the data

Re: [qooxdoo-devel] Properties scrollbarX, scrollbarY in qx.ui.container.Scroll

2011-09-22 Thread Daniel Lenggenhager
Yes, that was my idea :-) Okay, then I hope that changing the appearance of the scrollbars will take the "hidden" effect (set all colors to the background color). My goal is the same look and feel like a tablet/mobile application... and there is no more scrollbar visible. Thanks for your time

Re: [qooxdoo-devel] Properties scrollbarX, scrollbarY in qx.ui.container.Scroll

2011-09-22 Thread thron7
Ah, now I'm getting it... You want to hide the scrollbar, but still be able to scroll with mouswheel/key input ... It seems this is not possible. I tried to achieve it using the scrollbar child control var scy = containerScroll.getChildControl("scrollbar-y"); scy.setVisibility("

Re: [qooxdoo-devel] Contrib with qx as namespace

2011-09-22 Thread thron7
Seldaiendil, On 09/21/2011 06:22 PM, Seldaiendil D. Flourite wrote: One of the things we are focusing is to use EyeOS as a qooxdoo application (yes, it isn't a qooxdoo application right now). So I organized the files by namespace and tried to compile it. I found than we still having some EyeOS

Re: [qooxdoo-devel] Question about treevirtual

2011-09-22 Thread Derrell Lipman
On Thu, Sep 22, 2011 at 09:50, Benjamin Dreux wrote: > I'm wondering why there is two class for virtual tree : > qx.ui.treevirtual.TreeVirtual > and > qx.ui.tree.VirtualTree > > Maybe a little bit more explanation would be good in the API, just to > help us to quickly understand what is the differ

[qooxdoo-devel] Question about treevirtual

2011-09-22 Thread Benjamin Dreux
I'm wondering why there is two class for virtual tree : qx.ui.treevirtual.TreeVirtual and qx.ui.tree.VirtualTree Maybe a little bit more explanation would be good in the API, just to help us to quickly understand what is the difference between those two implementation Regards -- Benjamin Dreux

Re: [qooxdoo-devel] Build mode loads scripts

2011-09-22 Thread Seldaiendil D. Flourite
Oh! Thank you so much! I spent so many days reading the docs ( http://manual.qooxdoo.org/1.5.x/pages/tool/generator_config.html and http://manual.qooxdoo.org/1.5.x/pages/tool/generator_config_articles.html) and creating test jobs without success but you give me clues to find out the problem, thank

Re: [qooxdoo-devel] Build mode loads scripts

2011-09-22 Thread thron7
- In which path are the build files generated? I see no place in your configuration where you specify output paths. - Could it be you're loading the source version? From what you are writing I see no distinction between 'source' and 'build' paths. - It is generally not a good idea *not* to in

Re: [qooxdoo-devel] Antw: Qooxdoo developement in Eclipse for SDK 1.5?

2011-09-22 Thread pascal
thanks all for the help, i finally made it to bind the Spket Plug-Inn(1.6.18) in Eclipse (3.7) to work with the qooxdoo (1.5)! perhaps for others newbies with the same problem ;) : One of the problem why it didn't work before was a problem with some other eclipse plug-Inns. After i uninstalled a

[qooxdoo-devel] Build mode loads scripts

2011-09-22 Thread Seldaiendil D. Flourite
Hi all, I'll keep it simple: I have a *config.json* file on */var/www/view/devtools/eyeos* with this: "jobs" : { [...] "base": { "extend": ["common"], "include": ["qx.*", "eyeos.*", "qxjqplot.*"], "compile-options": { "code": { "locales" : "

Re: [qooxdoo-devel] Stop running this script alert in IE 8

2011-09-22 Thread Tino Butz
Do you think this is a bug in qooxdoo or in your application? Try to profile your application with the IE developer tools. By doing this, you can perhaps find the hot spot (too much iterations / function calls). If you think it is a qooxdoo bug, please open a bug report (bugzilla.qooxdoo.org

Re: [qooxdoo-devel] How to ensure Model Changes get saved to remote database?

2011-09-22 Thread Tino Butz
Saving data via a service is not supported by the data stores. For more information, follow the following bug: http://bugzilla.qooxdoo.org/show_bug.cgi?id=2993 When you want to listen on any update made in a certain model, you should use the following Mixin: http://demo.qooxdoo.org/current/api

Re: [qooxdoo-devel] Antw: Qooxdoo developement in Eclipse for SDK 1.5?

2011-09-22 Thread Marc Puts
To get Spket working with qooxdoo, this ML thread from earlier this year is very helpful: [1] http://qooxdoo.678.n2.nabble.com/Qooxdoo-IDE-td6193372.html Marc On 09/22/2011 12:51 PM, thron7 wrote: > Hi, > > you can find some hints here: > > http://qooxdoo.org/documentation/general/development_

Re: [qooxdoo-devel] Stop running this script alert in IE 8

2011-09-22 Thread gouravmehta
I just came to know when this alert occurred. In IE8, hide your status bar (Go to view -> Status Bar). Then refresh the page. then i am getting this alert very frequently and also disturb application UI view. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Stop-running-this-scr

Re: [qooxdoo-devel] Antw: Qooxdoo developement in Eclipse for SDK 1.5?

2011-09-22 Thread thron7
Hi, you can find some hints here: http://qooxdoo.org/documentation/general/development_tools which also mentions Spket. You should definitely look at Eclipse JSDT (JavaScript Development Tools), which I believe is now a subproject of WST (Web Standard Tools). I wouldn't recommend you to QXD

[qooxdoo-devel] Eclipse developement for sdk 1.5?

2011-09-22 Thread Brause, Pascal
Hi everybody, i'm new to qooxdoo and try to develope some applications, but would like to do this in Eclipse. I read several hints in the Manuals,googled a lot and searched in this forum, but any solution didn't work with sdk 1.5. So perhaps could someone tell me: Can i develope qooxdoo 1.5 wit

[qooxdoo-devel] Antw: Qooxdoo developement in Eclipse for SDK 1.5?

2011-09-22 Thread Robert Nimax
Hi, try the spket-plugin to get the benefits of code completion / code browsing. For debugging purpose I´d suppose to use browser built-in environments like Firebug. If you demand debugging js code via Eclipse I´d advise using Chrome Developer Tools. But that´s all just client side. HTH, Rob.

[qooxdoo-devel] Qooxdoo developement in Eclipse for SDK 1.5?

2011-09-22 Thread sunhine
Hi everybody, i'm new to qooxdoo and try to develope some applications, but would like to do this in Eclipse. I read several hints in the Manuals,googled a lot and searched in this forum, but any solution didn't work. So perhaps could someone tell me: Can i develope qooxdoo 1.5 with eclipse and w

Re: [qooxdoo-devel] IE9 issues pertaining to buttons

2011-09-22 Thread Christian Hagendorn
Hi Jim, that's look really crazy. I have no idea why the IE8 mode works and the IE9 not, because both should use the same implementation. I would try to ensure that the problem has nothing to do with combined images. Try to remove all combined files with the meta file form your resources and