Re: [qooxdoo-devel] Low Level qooxdoo

2009-09-18 Thread Guilherme Aiolfi
Yeap, I tried include in a js those: "include" : [ "qx.bom.Lifecycle", "qx.bom.Element", "qx.bom.element.*", "qx.bom.Collection", "qx.dom.*", "qx.event.handler.Keyboard", "qx.event.handler.Mouse" ], With all optimizations it give a

Re: [qooxdoo-devel] Low Level qooxdoo

2009-09-18 Thread Petr Kobalíček
Hi Guilherme, I'm afraid that qooxdoo is very big for these minimal solutions. I wrote some time ago BLite library (http://code.google.com/p/blite/) that contains similar object model that qooxdoo and it's very small. To be honest, I never needed libraries like jquery to select are links in page a

Re: [qooxdoo-devel] rpc server side question

2009-09-18 Thread Petr Kobalíček
Hi Jean, thank you for comments and for rpc preview, I will take a look. And about our application it's not as simple as it seems. I'm using qooxdoo only for administration part (so this is why i need rpc integration) and wicket for standard web presentation / some logic (it's ecommerce). So qoox

Re: [qooxdoo-devel] PartLoader and Class.getByName

2009-09-18 Thread thron7
>> So, can you verify the class custom.ClassA is loaded? > no, i have no idea how? its my first attempt with parts and partloading. Don't worry about the part loading. After the call to PartLoader.require has finished (which becomes apparent in the call-back function you're providing, the one you

Re: [qooxdoo-devel] Controlling scrollbars?

2009-09-18 Thread Ken MacDonald
This worked great for the embed.Html I had asked about originally. Now I have a qx.ui.table.Table, which also has a contentElement associated with it, both inherit from qx.ui.core.Widget#getContentElement, but this is not

Re: [qooxdoo-devel] disabling focus on a table?

2009-09-18 Thread Ken MacDonald
Bug 2818 submitted. Ken The "selectable" property is unused by the Table widget. It does nothing. > That's why it's a reasonable request to enhance Table so that it implements > what you're now using. > > Derrell > > > > > ---

Re: [qooxdoo-devel] disabling focus on a table?

2009-09-18 Thread Derrell Lipman
On Fri, Sep 18, 2009 at 16:11, Ken MacDonald wrote: > > It would be a reasonable "enhancement bug report" to request that >> table.setElectable(false) set the selection mode to NO_SELECTION. Feel free >> to post that to bugzilla. >> >> > Um, so what DOES it do now??? The doc for the "selectable"

Re: [qooxdoo-devel] disabling focus on a table?

2009-09-18 Thread Ken MacDonald
> It would be a reasonable "enhancement bug report" to request that > table.setElectable(false) set the selection mode to NO_SELECTION. Feel free > to post that to bugzilla. > > Um, so what DOES it do now??? The doc for the "selectable" property says "Whether the widget contains content which may b

Re: [qooxdoo-devel] PartLoader and Class.getByName

2009-09-18 Thread Thomas Dräger
thron7-2 wrote: > > > So, can you verify the class custom.ClassA is loaded? > > T. > > no, i have no idea how? its my first attempt with parts and partloading. Thomas -- View this message in context: http://n2.nabble.com/PartLoader-and-Class-getByName-tp3668151p3671948.html Sent from th

Re: [qooxdoo-devel] disabling focus on a table?

2009-09-18 Thread Derrell Lipman
On Fri, Sep 18, 2009 at 15:41, Ken MacDonald wrote: > Because we were all answering the wrong question. We answered how to get >> rid of the mouseover focus highlight. You're asking about the selection >> highlight. Somehow that was missed. >> >> Instead of listening for the changeSelection event

Re: [qooxdoo-devel] disabling focus on a table?

2009-09-18 Thread Ken MacDonald
> > Because we were all answering the wrong question. We answered how to get > rid of the mouseover focus highlight. You're asking about the selection > highlight. Somehow that was missed. > > Instead of listening for the changeSelection event, does this work instead: > > > table.getSelectionModel(

Re: [qooxdoo-devel] disabling focus on a table?

2009-09-18 Thread Derrell Lipman
On Fri, Sep 18, 2009 at 15:09, Ken MacDonald wrote: > > I also tried creating a listener on "changeSelection" for the table (to do >> a "clearSelection()") but it doesn't get fired. >> >> > Sorry, I created the listener wrong for this approach. This DOES seem to > solve the problem, once the lis

Re: [qooxdoo-devel] How can I stop scrolling from making popups disappearing?

2009-09-18 Thread Jean-Noël Rivasseau
Hello, I know that *normally* when you click on something else, popups disappear. But this is due to the following line of code in PopupManager: qx.bom.Element.addListener(window, "blur", this.hideAll, this); and I remove this listener in my own application. Still, clicking on scrollbars ma

Re: [qooxdoo-devel] disabling focus on a table?

2009-09-18 Thread Ken MacDonald
> I also tried creating a listener on "changeSelection" for the table (to do > a "clearSelection()") but it doesn't get fired. > > Sorry, I created the listener wrong for this approach. This DOES seem to solve the problem, once the listener was attached properly. recipeTableChangeSelection: f

Re: [qooxdoo-devel] How to use data binding for a SelectBox (which is intended for single selection)

2009-09-18 Thread Jean-Noël Rivasseau
Yes, thanks for the patch. I did not update my code yet but am looking forward to. Jean-Noel On Thu, Sep 17, 2009 at 2:02 PM, Guilherme Aiolfi wrote: > Great! Just changed my code, 10 lines less for every > selectbox/radiobuttongroup! Thanks for hearing us. > ---

Re: [qooxdoo-devel] disabling focus on a table?

2009-09-18 Thread Ken MacDonald
On Fri, Sep 18, 2009 at 1:40 PM, thron7 wrote: > Try one of the following: > > - on the table itself, you can invoke recipeTable.setFocusable(false) > This doesn't work > - on the *row renderer* for that table, you can invoke > .setHighlightFocusRow(false). Check the Table API how to get at

Re: [qooxdoo-devel] rpc server side question

2009-09-18 Thread Jean-Baptiste BRIAUD -- Novlog
Hi Petr, I'm still wondering why do you need Wicket or other frameworks in such architecture ? Page or View from such framework use to provide HTTP answer containing that bloody boiler plate HTML + Data +js hack for ajax but thanks to qooxdoo that delivered us from that horrible thing (ok, i

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread Gene Amtower
On Fri, 2009-09-18 at 19:51 +0200, thron7 wrote: > Gene, > > > This answer assumes the user is migrating an app that they developed > > with a prior version of the SDK themselves, but what if you get the > > source code from another developer and need to maintain it or migrate > > it? You wou

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread Ken MacDonald
Bug 2817 submitted to track this... Ken -- Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobil

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread thron7
Gene, > This answer assumes the user is migrating an app that they developed > with a prior version of the SDK themselves, but what if you get the > source code from another developer and need to maintain it or migrate > it? You wouldn't necessarily have the SDK from the original project work.

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread thron7
Ken, could you open a bug report (at bugzilla.qooxdoo.org) for this?! That would be great. T. Ken MacDonald wrote: > Thanks! Might be worthwhile doc'ing that in a few places, especially > the 'migration' docs (and readme files) - and to check it BEFORE > blowing the old installation away! > Ke

Re: [qooxdoo-devel] disabling focus on a table?

2009-09-18 Thread thron7
Try one of the following: - on the table itself, you can invoke recipeTable.setFocusable(false) - on the *row renderer* for that table, you can invoke .setHighlightFocusRow(false). Check the Table API how to get at the row renderer (I think it's something like getDataRowRenderer(). I'm surprise

[qooxdoo-devel] Low Level qooxdoo

2009-09-18 Thread Guilherme Aiolfi
Hi, Is there something similar to http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js for us, qooxdoo users? I'm talking about the low level qooxdoo. Someplace to receive qx-bom.js minified and gzipped. -- Come b

Re: [qooxdoo-devel] disabling focus on a table?

2009-09-18 Thread Derrell Lipman
On Fri, Sep 18, 2009 at 13:13, Ken MacDonald wrote: > I have a table on my page (qx.ui.table.Table) which displays two columns of > info, amount and ingredients for recipes. > > Currently, if I click the mouse on a row of the recipe table, the row is > highlighted. I've tried both of these: > >

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread Gene Amtower
On Fri, 2009-09-18 at 19:20 +0200, thron7 wrote: > > That makes sense. I wasn't sure what version I was at before migration > > until after I had done it, and they said the installation I had before > > was 0.8.2-something. Maybe the migration should force you to enter an > > 'old' version inst

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread Ken MacDonald
Thanks! Might be worthwhile doc'ing that in a few places, especially the 'migration' docs (and readme files) - and to check it BEFORE blowing the old installation away! Ken On Fri, Sep 18, 2009 at 1:20 PM, thron7 wrote: > > > That makes sense. I wasn't sure what version I was at before migration

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread thron7
> That makes sense. I wasn't sure what version I was at before migration > until after I had done it, and they said the installation I had before > was 0.8.2-something. Maybe the migration should force you to enter an > 'old' version instead of providing a default? Good point. > Related to th

[qooxdoo-devel] disabling focus on a table?

2009-09-18 Thread Ken MacDonald
I have a table on my page (qx.ui.table.Table) which displays two columns of info, amount and ingredients for recipes. Currently, if I click the mouse on a row of the recipe table, the row is highlighted. I've tried both of these: this.recipeTable.releaseCapture(); // supposed to disable mous

Re: [qooxdoo-devel] Static intializers

2009-09-18 Thread thron7
> Is it possible to define a class that has a static initializer? In other > words, one that runs an arbitrary function to set up static class variables > using an arbitrary function, then the class is first defined? > > You mean something like this?: qx.Class.define("xxx", { ... statics

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread Ken MacDonald
> > > Great. Meanwhile, I checked the migration data, and there is indeed a > > migration step rewriting qx.ui -> qx.legacy.ui. But this of course only > > affects code that is migrated from *0.7.x*, not 0.8.x! During migration, > > you have to enter your current qooxdoo version, and the default is

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread thron7
>> I've found that reverting all of the ".legacy." names to the originals >> seems to fix most of the problems my app appears to be back to >> where it was before I started migration, and seems to be working OK, >> or at least as well as it was before... >> > > Great. Meanwhile, I chec

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread thron7
> I've found that reverting all of the ".legacy." names to the originals > seems to fix most of the problems my app appears to be back to > where it was before I started migration, and seems to be working OK, > or at least as well as it was before... Great. Meanwhile, I checked the migrati

Re: [qooxdoo-devel] No event handler for DOM_img_load

2009-09-18 Thread Jean-Noël Rivasseau
Hi, On Thursday 17 September 2009 Thomas Herchenröder wrote: > > There is currently no event handler for the load even on a DOM > > element... which is really problematic for us, as we need to listen to > > the load event of an img DOM element. Would it be easy for you to > > implement it? Or how

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread Ken MacDonald
> Wait - there is something weird here. I've just checked these two > classes, and there *never was* a qx.legacy.ui.layout.HBox or > qx.legacy.ui.container.Composite, in none of the 0.8.x releases! There > are, though, qx.ui.layout.HBox and qx.ui.container.Composite! How these > qx.legacy.* name sp

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread thron7
Ken MacDonald wrote: > Hi, > I got past that, but generate.py source gave the following warnings, > and I'm now getting problems with Label.js > > - Scanning D:\hs\cwp-project\apps\webrecipes... > >>> Resolving dependencies... > - ! Unknown class referenced: qx.legacy.ui.layout.HBox (in:

Re: [qooxdoo-devel] Static intializers

2009-09-18 Thread Derrell Lipman
On Fri, Sep 18, 2009 at 11:47, dmbaggett wrote: > > Is it possible to define a class that has a static initializer? In other > words, one that runs an arbitrary function to set up static class variables > using an arbitrary function, then the class is first defined? > > You can, in theory, put yo

Re: [qooxdoo-devel] qxbuild and qxet packages

2009-09-18 Thread thron7
> 4 : use qxbuild : you will just have to include a big js file and you > are at very few minutes from your previous js tested in the > playground. You can enjoy qooxdoo power but ok, files are big. At that > time, it is not important, its not deployed on production, isn't it ? > > 5. after

[qooxdoo-devel] Static intializers

2009-09-18 Thread dmbaggett
Is it possible to define a class that has a static initializer? In other words, one that runs an arbitrary function to set up static class variables using an arbitrary function, then the class is first defined? Dave -- View this message in context: http://www.nabble.com/Static-intializers-tp25

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread Alexander Steitz
Hi Ken, On Friday 18 September 2009 Ken MacDonald wrote: > Hi, > I'm trying to migrate a project I had working with qooxdoo 8.2-something to > 8.3. > > var layout = new qx.ui.layout.VBox(); > > should work according to the sample in qx.ui.layout.VBox in the 8.3 docs, > but I get: > > "qx.ui.la

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread Ken MacDonald
Hi, I got past that, but generate.py source gave the following warnings, and I'm now getting problems with Label.js - Scanning D:\hs\cwp-project\apps\webrecipes... >>> Resolving dependencies... - ! Unknown class referenced: qx.legacy.ui.layout.HBox (in: webrecipes.Viewer) - ! Unknown cla

Re: [qooxdoo-devel] helloworld/source/index.html an empty page

2009-09-18 Thread thron7
>> after >> /opt/qooxdoo-0.8.3-sdk/tool/bin/create-application.py --name=custom --out=. >> on my ubuntu Linux suffi 2.6.28-15-generic #49-Ubuntu SMP Tue Aug 18 >> 18:40:08 UTC 2009 i686 GNU/Linux >> >> I can access this url, but it is an empty page. >> http://localhost/custom/source/index.html. >

Re: [qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread thron7
Ken, > var layout = new qx.ui.layout.VBox(); > > should work according to the sample in qx.ui.layout.VBox in the 8.3 > docs, but I get: > > "qx.ui.layout.VBox is not a constructor" the error message pretty much hints at the fact that the class is not even loaded. If you are using it for th

Re: [qooxdoo-devel] PartLoader and Class.getByName

2009-09-18 Thread thron7
Thomas Dräger wrote: > the script tells me the part was loaded but console.log(clazz) shows an > "undefined" > So, can you verify the class custom.ClassA is loaded? T. -- Come build with us! The BlackBerry® Develope

Re: [qooxdoo-devel] rpc server side question

2009-09-18 Thread Petr Kobalíček
Hi Jean, if you have changes, it would be nice to share that :) I'm using apache wicket and I want to integrate RPC with their RequestCycle and custom Sessions. I can make page that responds in JSON, but this is not what I exactly need:) First I must explore the qooxdoo rpc package, I will ask i

Re: [qooxdoo-devel] helloworld/source/index.html an empty page

2009-09-18 Thread Loïc Bresson -- Novlog
Hi. Raymond Rösch wrote: > after > /opt/qooxdoo-0.8.3-sdk/tool/bin/create-application.py --name=custom --out=. > on my ubuntu Linux suffi 2.6.28-15-generic #49-Ubuntu SMP Tue Aug 18 > 18:40:08 UTC 2009 i686 GNU/Linux > > I can access this url, but it is an empty page. > http://localhost/custom/s

Re: [qooxdoo-devel] PartLoader and Class.getByName

2009-09-18 Thread Thomas Dräger
thron7-2 wrote: > > > Interesting. What is the return value from your > qx.Class.getByName("custom."+name) call? Can you verify that the > expected class (e.g. "custom.ClassA") is actually loaded after the > PartLoader.require call (e.g. in Firebug)? > > T. > > the script tells me the p

[qooxdoo-devel] helloworld/source/index.html an empty page

2009-09-18 Thread Raymond Rösch
hi Is there sth. wrong with my installation? after /opt/qooxdoo-0.8.3-sdk/tool/bin/create-application.py --name=custom --out=. on my ubuntu Linux suffi 2.6.28-15-generic #49-Ubuntu SMP Tue Aug 18 18:40:08 UTC 2009 i686 GNU/Linux I can access this url, but it is an empty page. http://localhost

[qooxdoo-devel] qooxdoo migration problems

2009-09-18 Thread Ken MacDonald
Hi, I'm trying to migrate a project I had working with qooxdoo 8.2-something to 8.3. var layout = new qx.ui.layout.VBox(); should work according to the sample in qx.ui.layout.VBox in the 8.3 docs, but I get: "qx.ui.layout.VBox is not a constructor" Also tried: var layout = new qx.ui.lay

Re: [qooxdoo-devel] PartLoader and Class.getByName

2009-09-18 Thread thron7
Thomas > im trying to create a class by name with qx.Class.getByName(NameOfClass) > which was previously loading by the PartLoader. Think of Plugins which the > main app only knows by name. > > Sample: > Class custom.ClassA in Part "ClassA" > > qx.io2.PartLoader.require([name], function() { >

Re: [qooxdoo-devel] qxbuild and qxet packages

2009-09-18 Thread Derrell Lipman
On Fri, Sep 18, 2009 at 08:34, Jean-Baptiste BRIAUD -- Novlog < j-b.bri...@novlog.com> wrote: > 4 : use qxbuild : you will just have to include a big js file and you > are at very few minutes from your previous js tested in the > playground. You can enjoy qooxdoo power but ok, files are big. At th

Re: [qooxdoo-devel] qxbuild and qxet packages

2009-09-18 Thread Jean-Baptiste BRIAUD -- Novlog
This is now more than one year I'm using qooxdoo for our innovative software project in a start'up called Novlog. I'm very happy and satisfied with my choice, even one year after. Despite I really appreciate qooxdoo, I think something could/should be improved : community size. We are all using

Re: [qooxdoo-devel] How to display the Menu when hovering over a ToolbarMenuButton

2009-09-18 Thread jose.badeau
Done. Cheers :) -Original Message- From: Christian Schmidt [mailto:schmidt.christ...@1und1.de] Sent: Friday, September 18, 2009 1:40 PM To: qooxdoo Development Subject: Re: [qooxdoo-devel] How to display the Menu when hovering over a ToolbarMenuButton Hi Jose, thanks for reporting, c

Re: [qooxdoo-devel] How to display the Menu when hovering over a ToolbarMenuButton

2009-09-18 Thread Christian Schmidt
Hi Jose, thanks for reporting, could you please open a bug report for that? (http://bugzilla.qooxdoo.org/) Thanks, Chris jose.bad...@ubs.com schrieb: > Hi Christian, > > > Thanx for the sample code. I was pretty sure I would have to write my own > class or event handler but just wanted to be s

Re: [qooxdoo-devel] remote.Request on external Server

2009-09-18 Thread Stefan Volbers
Hi Raymond, if same origin policy persistently keeps you from reaching an external server (as crossDomain property has its own side effects, or whyever), you may resort to establish a proxy script on your own server (which wouldn't be affected by SOP). So your remote.Request would address the

Re: [qooxdoo-devel] remote.Request on external Server - solved

2009-09-18 Thread Raymond Rösch
Hey Thomas, this setting helped: request.setCrossDomain( true ); Thanks a lot. Raymond Weitergeleitete Nachricht Von: thron7 An: r.roe...@roeschinformatik.ch, qooxdoo Development Betreff: Re: [qooxdoo-devel] remote.Request on external Server Datum: Fri, 18 Sep 200

Re: [qooxdoo-devel] qxbuild and qxet packages

2009-09-18 Thread Fritz Zaucker
Hi Petr, I find it great that you make your Qooxdoo projects available for others to use/share/improve/... I just don't understand why you don't put them at another place than the one provided by Qooxdoo ( .../contrib/). Having everything together would make it a lot easier for me as a simple u

Re: [qooxdoo-devel] Serving a qooxdoo app from Google App engine

2009-09-18 Thread Hugh Gibson
> can you gzip it? Qooxdoo 0.8 is, I think, a bit larger than 0.7. If > you use gzip you get usually file about 200-300kB. Yes, but not all requests may allow the gzipped version. Our 0.7.x built app is 220K gzipped. Hugh --

Re: [qooxdoo-devel] Serving a qooxdoo app from Google App engine

2009-09-18 Thread Hugh Gibson
> > Looking at our app we have only 114 files in the resource (and > > descendants) folder; this is in 0.7.x. Things like dialog close > > buttons. Is 0.8 significantly different here? > > > > It might increase, as there is a whole new bunch of images related > to decorations in the framewor

Re: [qooxdoo-devel] themes question

2009-09-18 Thread Petr Kobalíček
Hi Fritz, you are right. Thron were right too, I just asked and it really was my problem. - Petr 2009/9/18 Fritz Zaucker : > Petr, > > I think you are missing the point. What Thomas means (I think), is that he > (and probably others) will happily look at problems that can be REPRODUCED > in the

[qooxdoo-devel] qxbuild and qxet packages

2009-09-18 Thread Petr Kobalíček
Hi qooxdoo list, I'd like to introduce 2 projects I created at google code I want to share with qooxdoo community. 1. QxBuild ( http://code.google.com/p/qxbuild/ ) QxBuild is all-in-one package that allows to use qooxdoo as other javascript libraries, just include it and go. After Jean said th

Re: [qooxdoo-devel] remote.Request on external Server

2009-09-18 Thread Raymond Rösch
Dear Alex, you are right ! Thank you for the hint. Its great. The Problem still persists, as I need to be able to contact another Server. I tried to manipulate document.domain immediately before the request is sent. It did not work. Do you or anybody else have any ideas? TIA Raymond We

[qooxdoo-devel] PartLoader and Class.getByName

2009-09-18 Thread Thomas Dräger
hi, im trying to create a class by name with qx.Class.getByName(NameOfClass) which was previously loading by the PartLoader. Think of Plugins which the main app only knows by name. Sample: Class custom.ClassA in Part "ClassA" qx.io2.PartLoader.require([name], function() { var clazz = qx.Cla

Re: [qooxdoo-devel] themes question

2009-09-18 Thread Fritz Zaucker
Petr, I think you are missing the point. What Thomas means (I think), is that he (and probably others) will happily look at problems that can be REPRODUCED in the standard Qooxdoo environment. Looking at problems related to your custom build process is what is not really possible (with limited re

Re: [qooxdoo-devel] themes question

2009-09-18 Thread Petr Kobalíček
Hi Thron and all others, 2009/9/18 thron7 : > Although your issue seems solved, I want to make a few additional comments. > >> sorry. I don't want from you to solve my problem. But if this is bug >> in qooxdoo (and for me it seems to be) I'd like to have some >> assistance from developer that comp

Re: [qooxdoo-devel] How to display the Menu when hovering over a ToolbarMenuButton

2009-09-18 Thread Fritz Zaucker
On Fri, 18 Sep 2009, jose.bad...@ubs.com wrote: > About the menu bug, I cant say if it's a bug or rather just a weird > default but if you look at: > > http://demo.qooxdoo.org/current/demobrowser/#widget~MenuBar.html > > You will see that if you click a button (e.g. File) and mouse over the > menu

Re: [qooxdoo-devel] How to display the Menu when hovering over a ToolbarMenuButton

2009-09-18 Thread jose.badeau
Hi Christian, Thanx for the sample code. I was pretty sure I would have to write my own class or event handler but just wanted to be sure that their wasn't a built in way. About the menu bug, I cant say if it's a bug or rather just a weird default but if you look at: http://demo.qooxdoo.org/c

Re: [qooxdoo-devel] themes question

2009-09-18 Thread thron7
Although your issue seems solved, I want to make a few additional comments. > sorry. I don't want from you to solve my problem. But if this is bug > in qooxdoo (and for me it seems to be) I'd like to have some > assistance from developer that completely understand the API. You're always fast to a

Re: [qooxdoo-devel] themes question

2009-09-18 Thread Alexander Steitz
Hi Petr, On Thursday 17 September 2009 Petr Kobalíček wrote: > Why Modern and Classic themes are included in build if I'm not > using it? (I must manually exclude them). Short answer: I don't know. All I can say is that the theme classes have no dependency to any other class in the framework. For

Re: [qooxdoo-devel] remote.Request on external Server

2009-09-18 Thread Alexander Steitz
Hi Raymond, On Friday 18 September 2009 Raymond Rösch wrote: > I have a running environment for qooxdoo with an application that uses > remote.Request on locahost > But when I change the URL to the same Servers IP-Address or the one of > another server, it does not even give an entry in the webser

Re: [qooxdoo-devel] How to display the Menu when hovering over a ToolbarMenuButton

2009-09-18 Thread Christian Schmidt
Hi, > Just wondering if there is a simple way to tell a menu to automatically show > when hovering over it's menubutton instead of having to click? I see no > property for this? > No, there is no property for this. > Should I use event handles and manually show the menu or can I use the > sates?

Re: [qooxdoo-devel] Auto suggest for text field, combo box

2009-09-18 Thread Alexander Steitz
Hi, On Friday 18 September 2009 Shankar_java wrote: > The AutoSuggest class adds a pulldown menu of suggested values to a text > field. The user can either click directly on a suggestion to enter it into > the field, or navigate the list using the up and down arrow keys, selecting > a value using

Re: [qooxdoo-devel] Serving a qooxdoo app from Google App engine

2009-09-18 Thread thron7
> Looking at our app we have only 114 files in the resource (and > descendants) folder; this is in 0.7.x. Things like dialog close buttons. > Is 0.8 significantly different here? > It might increase, as there is a whole new bunch of images related to decorations in the framework. Although ma

Re: [qooxdoo-devel] remote.Request on external Server

2009-09-18 Thread thron7
Where do you load the script from? Another case of SOP ("same-origin-policy")?! Try setting the cross-domain flag. T. Raymond Rösch wrote: > Dear all > > I have a running environment for qooxdoo with an application that uses > remote.Request on locahost > But when I change the URL to the same S

[qooxdoo-devel] Auto suggest for text field, combo box

2009-09-18 Thread Shankar_java
The AutoSuggest class adds a pulldown menu of suggested values to a text field. The user can either click directly on a suggestion to enter it into the field, or navigate the list using the up and down arrow keys, selecting a value using the enter key. The values for the suggestion list are to pro