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] Serving a qooxdoo app from Google App engine

2009-09-17 Thread Hugh Gibson
Thomas, > What do you mean with "an installation of 0.8.x"? If you want to > install an entire SDK into GAE, you can count the files by > yourself, but why would you want the SDK on GAE?! Do you want to > compile in the cloud?! Not the SDK; just a compiled version of course! > If you just wan

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

2009-09-17 Thread Hugh Gibson
Hi, Has anyone tried serving a qooxdoo app from the Google app engine? If not, can the developers say how many files are required for an installation of 0.8.x? Are all images stored in one file now (file count is one of the limitations). Hugh PS I've been offline for a long time as we've just

Re: [qooxdoo-devel] Deployment issue (yes, you read correctly), call for ideas

2009-03-19 Thread Hugh Gibson
> I'm facing a deployment issue : we are in a context where the > application (qooxdoo client side and PHP backend side) can change > often. This can be seen as a redeployment of all the application's > files under the web server. We have a number (actually our SVN version number) built into al

Re: [qooxdoo-devel] Extending My Qooxdoo Framework Classes Locally?

2009-03-02 Thread Hugh Gibson
> If you mean including "contrib" content in a project, I think the > instructions provided in the link from Hugh spells out how to > include the additional library found within "contrib". > > ... snip ... > > Maybe you meant to have Hugh spell out the easy steps - I'm not > sure I can give you

Re: [qooxdoo-devel] Extending My Qooxdoo Framework Classes Locally?

2009-03-01 Thread Hugh Gibson
Gene, > I can't seem to find any documentation on adding new classes to my > own Qooxdoo framework in my own local installation. Is this > possible? > > In particular, the ComboBoxEx that appeared in 0.7.4 would really be > useful to me in 0.8.1, and I'd be willing to try to resurrect it in

Re: [qooxdoo-devel] Is anyone adding data to a table via setDataAsMapArray()?

2009-02-26 Thread Hugh Gibson
> I am currently playing with something similar to this. At what > point are you accessing this information? Some examples from 0.7.x. Our extra data is lHeader, a simple array of additional information. In a class derived from qx.ui.table.model.Remote : GetRowHeader : function(nRowIndex) {

Re: [qooxdoo-devel] Is anyone adding data to a table via setDataAsMapArray()?

2009-02-26 Thread Hugh Gibson
> But I am not able to do > something like this: > tData = [{"col1":{"value":23, "RO":true}, "col2":45}] We get around this by sending in a map with the column names as keys and with an additional key value which contains the meta data. The map for the whole row is available when painting cells e

Re: [qooxdoo-devel] Need ComboBox Control With a Table Instead of a Listbox

2009-02-26 Thread Hugh Gibson
> One particularly useful widget in qooxdoo is the ComboBox, where a > text field is combined with a dropdown ListBox. While this will be > quite useful where a simple select list is enough, I have some > requirements that really need the dropdown list to be a table of > records rather than a si

Re: [qooxdoo-devel] Download Button

2009-02-15 Thread Hugh Gibson
> my first solution for a download you mentioned was window.open. Its > works perfect on development with localhost. > But after deployment on a webserver the popup-blockers of the > several clients made problems and it didn't work with every > security setting. If you simplify the javascript t

Re: [qooxdoo-devel] No hyphenated project names?

2009-02-15 Thread Hugh Gibson
> Then I started my own hellow world and called it apropos-qx. The > hyphen seems to be a problem: > >Uncaught ReferenceError: apropos is not defined Yes, hyphen (or dash) is the problem. See www.nabble.com/Re%3A-Qooxdoo-not-working-on-Fedora-10-p21410702.html and thread. Hugh ---

Re: [qooxdoo-devel] How to implement a Messagebox - Problem with event chain?

2009-02-11 Thread Hugh Gibson
> What I have a problem with is to implement a Messagebox which can > be called from anywhere in the application and returns a value > based on the button clicked. The gui work is easy with qooxdoo but > the routine calling my Messagebox function does not "wait" for the > returncode. That's e

Re: [qooxdoo-devel] Sound interface

2009-02-04 Thread Hugh Gibson
> Are there any updates on this (that is, regarding sound integration > into Qooxdoo)? We haven't done any more in this area. > I started looking into sound integration (more like sound > effects than music reproduction) and I was quickly annoyed by the > lack of interoperability among browser

Re: [qooxdoo-devel] Table, moving, selection manager

2008-12-22 Thread Hugh Gibson
> I have table with default selection manager and I'm sometimes > selecting rows myself using clearSelection(), > setSelectionInterval(). > Problem is, that table remembers old positions and when I move up or > right after selecting different row, It will move against old row. Do you still have p

Re: [qooxdoo-devel] Windows disappear irretrievably on "minimize"

2008-12-17 Thread Hugh Gibson
> My guess, if minimize actually works, is that I need to make the > root of my qooxdoo hierarchy a certain widget (maybe a Desktop or > WindowManager) that supports the docking action done by > this.hide(). This isn't in standard qooxdoo, but there is a contrib window manager at http://qooxdoo

Re: [qooxdoo-devel] Loading qooxdoo in the background during login

2008-11-25 Thread Hugh Gibson
> I've no idea how to do that, but I was thinking specifically to let > qooxxoo file and application js files to load in the background ? Yes, you could do something like this, using the browser cache to ensure that the files are available when you really need them. The main problem might be tha

Re: [qooxdoo-devel] Am I using qx.ui.table.model.Remote incorrectly?

2008-11-25 Thread Hugh Gibson
> > There are a couple of design issues which you're seeing the > results of. For one thing, there seem to be too many calls to > > _loadRowCount, and additionally, the calls to _loadRowData can > > occur "late", e.g. when a table is redisplayed when it was > > previously not visible, allowing

Re: [qooxdoo-devel] How to do an ?

2008-11-11 Thread Hugh Gibson
> A very very (very ?) little known feature of window.open is the > third parameter for option of the new window like with or without > scrollbar, ... You guys should invest in a copy of Flanagan: "Javascript: The definitive guide". It's all there (on page 926 of the fifth edition) - including

Re: [qooxdoo-devel] Sound interface

2008-10-29 Thread Hugh Gibson
> I recall SoundManager2 being quite a prominent "web 2.0" JS sound > solution (using Flash internally). There might be some others too, > you might want to check that (JS Sound Kit, etc.). There seems to be a good list of sound solutions at http://code.google.com/p/gwt-voices/ Two of them are

[qooxdoo-devel] Sound interface

2008-10-28 Thread Hugh Gibson
Having just implemented a Comet link to our server, I'm interested in knowing what sound alerts are possible. I can't see any current sound integration in qooxdoo. Has anyone added sound to their qooxdoo app? I found SoundManager 2 at http://www.schillmania.com/projects/soundmanager2/ which seem

Re: [qooxdoo-devel] Duplicate eMails

2008-10-15 Thread Hugh Gibson
> No, just one as always. No errors during sending. > Did you receive my other emails duplicated? Not yet on that one! Hugh - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Lin

Re: [qooxdoo-devel] How to change background color of a table row in 0.7.x

2008-10-15 Thread Hugh Gibson
> updateDataRowElement : function(rowInfo, rowElem) > createRowStyle : function(rowInfo) You will note that you have to override two functions and duplicate your colour decision code. I converted this to just one function. The API could be a lot better. Google "updateDataRowEl

Re: [qooxdoo-devel] Duplicate eMails

2008-10-14 Thread Hugh Gibson
> Sorry for the noise then. It's bizarre: I've had that email 5 times now! The headers indicate a complete track from google mail with different times so is it possible that Google is causing a problem here? Or are you sending it multiple times in error, Siarhei? e.g. Received: from wf-out-131

[qooxdoo-devel] Traits == qooxdoo properties?

2008-10-14 Thread Hugh Gibson
Just saw a reference to "traits" as implemented by Enthought for Python: http://code.enthought.com/projects/traits/ Lots of similarities to qooxdoo properties there. Particularly interesting to read about automatic UI generation from traits. Some mileage for qooxdoo work on MVC? Hugh -

Re: [qooxdoo-devel] Build version optimizations

2008-10-14 Thread Hugh Gibson
> > The most effective way would be to do it cross-namespaces: for > > example, renaming qx.ui.form.Spinner to "a1", > > qx.io.remote.Request to > > "a2", etc... > > Of course, names should be allocated on a shorter names go to > > names > > with more occurences. This would save tons of space I t

Re: [qooxdoo-devel] Writing robust selenium tests for qooxdoo

2008-10-14 Thread Hugh Gibson
> >> How are other people making their selenium-tests wait robustly ? > >> > > Maybe Hugh and his guys can comment on this?! Calling Chi... Hugh - This SF.Net email is sponsored by the Moblin Your Move Developer's chal

Re: [qooxdoo-devel] Build version optimizations

2008-10-13 Thread Hugh Gibson
> >> - optimization of class names. > > > > This is part of the existing optimization already, if I'm not > > mistaken. > > It is not. At least, not in the sense I described above. Or maybe > it's not on by default AND not documented anywhere? It *is* an existing bug - http://bugzilla.qooxdoo.o

Re: [qooxdoo-devel] javascript anomaly with regexp literal?

2008-10-10 Thread Hugh Gibson
> > There's a simpler case which exhibits behaviour that is unexpected: > > > > In your "simpler case", I think it's doing exactly the documented > behavior, and demonstrates precisely the reason for the existence of > lastIndex. When a regexp.test() returns true, it sets lastIndex to > where i

Re: [qooxdoo-devel] javascript anomaly with regexp literal?

2008-10-10 Thread Hugh Gibson
> *Subject:* [qooxdoo-devel] javascript anomaly with regexp literal? > *From:* "Derrell Lipman" <[EMAIL PROTECTED]> > *To:* "qooxdoo Development" > *Date:* Thu, 9 Oct 2008 12:36:13 -0400 > > This seems odd and I can't find any documentation stating why it's > so... > > This application has a fu

Re: [qooxdoo-devel] javascript anomaly with regexp literal?

2008-10-09 Thread Hugh Gibson
> This seems odd and I can't find any documentation stating why it's > so... Check out http://blog.stevenlevithan.com/archives/es3-regexes-broken and then https://bugzilla.mozilla.org/show_bug.cgi?id=98409 I'm not sure of the timeframe for a fix though as valid discussion in the bug report finis

Re: [qooxdoo-devel] Properties Window on clicking a node on a Tree

2008-10-09 Thread Hugh Gibson
> I am facing a couple of problems in my Tree widget. You don't say which version you are using, or which tree. > > 1. *Context Menu on Node :* > I want to get a context menu for a node when it is clicked on. So, > I have included the "click" event listener. But then, even if I > click outside

Re: [qooxdoo-devel] Decoration inheritance

2008-10-08 Thread Hugh Gibson
> > I see there is a lot of repetition in decorations. For example, > the > > "input-focused" and "input-disabled" decorations only differ from > > the > > "input" decoration for a few keys each. It would certainly make > > decorations declarations shorter to have some kind of inheritance > > sys

Re: [qooxdoo-devel] Hungarian notation change

2008-10-06 Thread Hugh Gibson
> I don't say the variable name should not reflect its type but most > of the time there are less cryptical variable names, which express > the type equally well. Take the look at the above example. Would > "shouldSetIds" make the code harder to read or easier? The way we > used hungarian notat

Re: [qooxdoo-devel] Property init values not being used

2008-10-06 Thread Hugh Gibson
> I absolutely agree with you. We should never assume to know the > value of a property in the constructor. If you happen to find more > of this anti pattern please let us know. Thanks. If I see any more... Hugh - This SF.

Re: [qooxdoo-devel] Remote Table Model

2008-10-06 Thread Hugh Gibson
> I noticed the same thing, and I wrote a real demo of using the > Remote Table Model. It's not appropriate to have it in the > demobrowser, however, since there are no available services on that > server. Instead, you can build it yourself and install the > server-side services on your own ser

Re: [qooxdoo-devel] Hungarian notation change

2008-10-06 Thread Hugh Gibson
> We try to get awy from the hungarian notation in new code so > "bSetIds" would be better named e.g. "shouldSetIds". Why? I find it essential in a run-time typed language to use simple hungarian notation to make it easier to understand code written by someone else. Hugh ---

[qooxdoo-devel] Property init values not being used

2008-10-04 Thread Hugh Gibson
I hit a problem with the table: see http://bugzilla.qooxdoo.org/show_bug.cgi?id=1449 . Note that this was in 0.7.3 but it's still probably in 0.8.x. The specific case for the table is that the displayStatusBar property is available to hide the status bar. The table class inits this value to true.

Re: [qooxdoo-devel] Qooxdoo home page problems

2008-10-04 Thread Hugh Gibson
> At this time, here in the US, the site is coming up in about 2 > seconds and the news section is populated normally. OK here now as well. Hugh - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge

[qooxdoo-devel] Qooxdoo home page problems

2008-10-02 Thread Hugh Gibson
Just noticed that the qooxdoo home page is taking a long time to load here (in the UK) and there is no news on it. You can click through to news, but it seems to me that the latest news item should be displayed on the front page. Hugh --

Re: [qooxdoo-devel] new Table column visibility menu needed

2008-10-02 Thread Hugh Gibson
> Since I'm not using a Menu object, I don't have a way to support the > columnVisibilityMenuCreateStart and columnVisibilityMenuCreateEnd > events, because there is no Menu object to reference in the event. > I searched the framework source code and nothing was using them. I've > eliminated tho

Re: [qooxdoo-devel] Missing list mails

2008-09-29 Thread Hugh Gibson
ge.net; Fri, 19 Sep 2008 08:59:47 -0700 Received: from mail.cix.co.uk ([217.155.1.142]) by mail.cixonline.com (CIX Online Mail Server v1.0) with ASMTP id ZZV48807 for ; Fri, 19 Sep 2008 17:02:07 +0100 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Date: Fri, 19 Sep

Re: [qooxdoo-devel] How do we automate testing of Qooxdoo apps?

2008-09-25 Thread Hugh Gibson
> I added a new command in IDE as > Command --> qxClick > Target --> qx=thefatbutton > > When I click the Find button, it gives > [error] Element qx=thefatbutton not found We don't tend to use the qx locators so I don't have much experience of that. However, you can turn on debug logging in Sel

Re: [qooxdoo-devel] qooXdoo future : what about offline ?

2008-09-25 Thread Hugh Gibson
> Link for downloading is broken too : > > Download AIR based qooxdoo API Viewer (r9197) point to > http://blog.qooxdoo.org/wp-content/uploads/2007/07/apiviewer.zip I've got the original download file here but when I try to run it I get: --- Adobe Apollo -

Re: [qooxdoo-devel] qooXdoo future : what about offline ?

2008-09-25 Thread Hugh Gibson
> > What do you think about offline web ? > Not much to discuss, offline capability would be a great addition > to the framework and to many qooxdoo apps. ;-) > > There ain't plans for a short-term solution within qooxdoo. It might > become a topic when or after tackling data binding (which shoul

Re: [qooxdoo-devel] Properties Window on clicking a node on a Tree

2008-09-24 Thread Hugh Gibson
> I figured that I can use qx.ui.menu.Menu from one the the demos and > its working. > The problem is that for leaf nodes in my tree, the context menu > appears correctly at the bottom (but not at the right ... it starts > not from bottom right of the node but from its bottom and extreme > left

Re: [qooxdoo-devel] soap demo

2008-09-24 Thread Hugh Gibson
> self.__onLoadWsdl is not a function > http://localhost:7789/static/frontend/source/class/soap/client.js > Line 304 > > it's plain stupid, frikkin function is there and it works! some help > would be appreciated :) Have you set a breakpoint in Firebug and checked what is there? Also, might be

Re: [qooxdoo-devel] How do we automate testing of Qooxdoo apps?

2008-09-23 Thread Hugh Gibson
> I added t > user-extensions-qooxdoo.js in Selenium core extensions. I put the > base url http://localhost/simulator which should work. > > When I click on the run all button on the IDE, nothing works. Am I > doing something wrong? Does it work with RC only? Can you see the qx instructions in

Re: [qooxdoo-devel] Properties Window on clicking a node on a Tree

2008-09-23 Thread Hugh Gibson
Amit, > I am not sure if this mail was sent on the mailing list as I don't > see it yet and had got a delivery failure notice. So, sending it > again. Yes, I've had this problem too. Seems like Sourceforge has some list problems. > I want to add a functionality in my Tree Widget that whenever

Re: [qooxdoo-devel] Selenium IDE error

2008-09-23 Thread Hugh Gibson
19 Sep 2008 08:34:18 -0500 > > Removing '" + array.join(", ") + "' it worked. > > 2008/9/19 Hugh Gibson <[EMAIL PROTECTED]> > > > Looking at the code in qx.core.Assert at line 333 shows some > > strange > > formatting which might a

Re: [qooxdoo-devel] Proposed minor behavior change to Table Model for 0.8

2008-09-23 Thread Hugh Gibson
> Currently it is not possible for the Data Model constructor to > specify the column id values because when the column heading values > are specified, those column id values will be overwritten with the > column headings. It is possible to pass the id values as well when > setting the column hea

Re: [qooxdoo-devel] Remote Table Model

2008-09-23 Thread Hugh Gibson
> Actually, I hadn't changed anything from a map to an array; I had > just changed which "index" (property of the map) was used to > reference the map. I changed it from the string ID to the column > number. However, I now see that the data provided to the Remote > data model is intended to be di

Re: [qooxdoo-devel] Remote Table Model

2008-09-23 Thread Hugh Gibson
> > The problem is that when the data model is passed to the > > constructor of the Table, the ID values are reset to the column names. > > > > Obviously, that's not where it happens. Sorry. It happens when > dataModel.setColumns() is called by the application. The problem I > described, howev

Re: [qooxdoo-devel] Remote table model -- was anyone using it?

2008-09-22 Thread Hugh Gibson
Derrell, See my response in the thread. I think I cover all the issues there. Your checkin will have broken our code - if we were using 0.8 :-) The documentation needs to be improved. Hugh > *Subject:* [qooxdoo-devel] Remote table model -- was anyone using > it? > *From:* "Derrell Lipman" <[E

Re: [qooxdoo-devel] Remote Table Model

2008-09-22 Thread Hugh Gibson
Derrell, I've been using the remote table for a couple of years and haven't ever hit this "fundamental problem" that you talk of. It appears that you have misunderstood how the row data is stored in the remote table. It actually is a map from column name to column information. Changing this to an

Re: [qooxdoo-devel] "qooxdoo-commit" mailinglist down

2008-09-19 Thread Hugh Gibson
> We would like to inform you that the mailing list responsible for > sending SVN commit information e-mails > ([EMAIL PROTECTED]) is down. > > Some e-mails could not be delivered. When you say "down" - do you mean not working at all? Or just that there are missing emails? I've noticed that for a

Re: [qooxdoo-devel] Selenium IDE error

2008-09-19 Thread Hugh Gibson
Looking at the code in qx.core.Assert at line 333 shows some strange formatting which might actually break Javascript rules. Perhaps an automatic semicolon is being inserted after the end of the line above. The line is: "The value '" + value + "' must have any of the values defined in the array '

Re: [qooxdoo-devel] tracking down memory leaks in tables

2008-09-19 Thread Hugh Gibson
> My application displays tables based on database information. > Columns count and style varies. It creates table and old references > to previous tables are removed. > > However I notice growing amount of objects below - each time table > is re-rendered FireFox allocates couple more megabytes

[qooxdoo-devel] Problems with demo...

2008-09-18 Thread Hugh Gibson
Quite apart from the lack of any description with the demos (see http://bugzilla.qooxdoo.org/show_bug.cgi?id=501 ) I found some problems with http://demo.qooxdoo.org/current/demobrowser/ . I'm not sure if these have been reported already so I'm logging them here first. 1. After selecting a new i

Re: [qooxdoo-devel] How do we automate testing of Qooxdoo apps?

2008-09-18 Thread Hugh Gibson
Kanugula, We use Selenium and find that it works reasonably well. There are some issues with cross-browser compatibility but overall it's been very helpful. It's easy to develop basic tests using the plugin for Firefox (Selenium IDE). We write our real tests in Python, a language we are familiar wi

Re: [qooxdoo-devel] Memory optimization ...

2008-09-11 Thread Hugh Gibson
> But I use the EventListener "contextmenu" to display my context > menu in the tree, I also use a function to create the customized > menu with this case code I don't know where place the > "this.remove". I remove the old context menu when a new one is constructed. That way you know that it's

Re: [qooxdoo-devel] [qx 0.7.x] How to replace a function

2008-09-10 Thread Hugh Gibson
RĂ¼diger I'm guessing that it didn't work. Take a look at the example code in frontend/application/testrunner/source/class/testrunner/test/Mixin.js to see it in action and work backwards from there. Check structures in a debugger. It's possible also that you can't apply the patch at the "defer" p

Re: [qooxdoo-devel] [qx 0.7.x] How to replace a function

2008-09-09 Thread Hugh Gibson
RĂ¼diger, > That would be exactly what I need. Only that I am working with the > 0.7.3 release and can't switch to anything newer in short time. > The bug doesn't state a target milestone yet, but from the revision > it looks like the fix was applied after 0.7.3. > Can you confirm that? Yes, it

Re: [qooxdoo-devel] [qx 0.7.x] How to replace a function

2008-09-09 Thread Hugh Gibson
> I need to replace a qooxdoo (0.7.x) function from 'outside' (i.e. > without modifying the qooxdoo source itself. > In addition, I want to be able to call the original function from > within the replacement and, of course, keep the this variable > intact. Use qx.class.patch. Use this.base(argu

Re: [qooxdoo-devel] Promising framework was: qooXdoo without any external tools

2008-09-09 Thread Hugh Gibson
> There is still a bug report for this: > http://bugzilla.qooxdoo.org/show_bug.cgi?id=496 Ah, thanks. I searched hard but couldn't find that one. I agree that it will just work with the pre-compiled qooxdoo for the demo so it wouldn't be a substitute for a pre-compiled build with everything incl

Re: [qooxdoo-devel] Promising framework was: qooXdoo without any external tools

2008-09-09 Thread Hugh Gibson
My thoughts, as a long-term user of qooxdoo and with the old toolchain installed (cygwin), as well as an even longer-term user of Python, are: > You can right start with all the snippets from the demo as well, > without reading the docs (and who reads docs as the first thing to > do :D ). Some

Re: [qooxdoo-devel] qooXdoo without any external tools or build helper

2008-09-09 Thread Hugh Gibson
> That is a software innovation. Basically, you go on our web > application (that I hope to be able to do with qooXdoo) to define > your need, the functional specification for a business > application, you click on a button and you see the result (that I > hope to be able to do with qooXdoo

Re: [qooxdoo-devel] Mouse cursor problem in MResizable in version 0.7.3?

2008-09-08 Thread Hugh Gibson
Jeroen, I see that no-one responded to your enquiry. If you can see a problem in 0.8 then I suggest that you report an issue on bugzilla. Hugh > If I have two resizable windows with exactly the same size on top of > each other and I mouse the mouse towards the edge, the cursor is > changed > to

Re: [qooxdoo-devel] config setting: QOOXDOO_URI broken?

2008-09-08 Thread Hugh Gibson
> The commit messages often contain the technical interesting things > ... don't know how to make them more visible?! In our case we simply copy/paste the revision number and commit message as a comment to the issue that is being worked on. Makes for great traceability... [fx: stops banging drum

Re: [qooxdoo-devel] ComboBox CellEditor problem in FF2 and FF3

2008-08-19 Thread Hugh Gibson
ems that this report has been missed by the qooxdoo devs and you should raise a bug report. Hugh > *Subject:* Re: [qooxdoo-devel] ComboBox CellEditor problem in FF2 > and FF3 > *From:* "Hugh Gibson" <[EMAIL PROTECTED]> > *To:* qooxdoo-devel@lists.sourceforge.net >

Re: [qooxdoo-devel] qooxdoo memory management

2008-08-19 Thread Hugh Gibson
> The (very !) minimal amount still rising (only on a now very > large widget sets) can be tracked down to arrays wich hold > hash-values of objects. > Adding and removing from javascript-arrays with always changing > ids leaks on IE and can be reproduced without qooxdoo as well. Very inter

Re: [qooxdoo-devel] Qooxdoo news follow-up

2008-08-11 Thread Hugh Gibson
> > Mhh, can you tell me where in Windows I may find such a ComboBox. > Just > > curios. All the boxes I have seen are doing something else when > > pressing Alt-Down. Maybe this is application specific as well.0 > > alt+down worked in all combos that I've tested, including: firefox > search eng

Re: [qooxdoo-devel] Qooxdoo news follow-up

2008-08-11 Thread Hugh Gibson
> > The question is how they should behave. I currently have not > found a > > single editable combobox in windows which has some useful type of > > keyboard interaction other than focusing the text field. > > You would expect the the down-key the dropdown the list and the > down-up key to select

Re: [qooxdoo-devel] best way to define constants within qooxdoo

2008-08-06 Thread Hugh Gibson
> It is also advised that you make your constants all upper case. By > doing this it reminds you, hopefully stopping you accidently > changing one (remember these aren't truely constant) and it also > let's the api viewer know it's a constant. Good old Microsoft conventions :-) Actually, the e

Re: [qooxdoo-devel] application locking up

2008-08-06 Thread Hugh Gibson
> *Firefox locks up and does one of those "Unresponsive Script" > warnings after a few seconds. This could be a Firebug problem. See http://code.google.com/p/fbug/issues/detail?id=892 Make sure you are using Firebug 1.2b07 or later. Hugh

Re: [qooxdoo-devel] best way to define constants within qooxdoo

2008-08-06 Thread Hugh Gibson
> How do you think I can best define my constants? Use the "statics" keyword in a class definition. We also define class objects just for constants, like this one: qx.Class.define("abling.constants.CConference", { /*

Re: [qooxdoo-devel] Eventhandling in qooxdoo

2008-08-04 Thread Hugh Gibson
> There is a qx.ui.form.CheckBox with a EventListener "changeChecked" > attached to it. While in the Function called by the EventHandler - > while handling the Event - we change the Selection of the CheckBox > back, because of insufficient Rights the user have and then the > Event is fired agai

Re: [qooxdoo-devel] Problem in Window

2008-08-04 Thread Hugh Gibson
> Hello all, I have a question again.. > Sorry i am a junior, so I have question :) Not a problem! I'm just going to give you hints; you will have to play with it yourself. > 1. I have a window contain image. Example : size the image is 400 X > 400. The problem is I can't resize my window to s

Re: [qooxdoo-devel] Question about Accessing Div

2008-08-04 Thread Hugh Gibson
> I have an Iframe that link to contents.html.. See my code : > > contents.html = > > > > > > > Application = > myIframe.setSource("contents.html"); > > My question is : > In qooxdoo, how to access the div ? I use > document.getElementById("contents"), but it return NULL.. I

Re: [qooxdoo-devel] ComboBox CellEditor problem in FF2 and FF3

2008-07-24 Thread Hugh Gibson
I suggest that you report this as a bug so it doesn't get lost. There's been no official response that I can see. Hugh > The ComboBox CellEditor has an event handling problem in FF2 and > FF3. If the combobox dropdown list overlays rows in the table and > you select an item, the focus indicator

Re: [qooxdoo-devel] [qooxdoo-commit] SF.net SVN: qooxdoo: [14278] trunk/qooxdoo

2008-07-24 Thread Hugh Gibson
Derrell's suggestion sounds very sensible. What do you think, Sebastian? Hugh > > hard to use, even for me. Rethought the idea and came up with > > this one. Bit values for all incoming states are dynamically > > created. Each widget can only support a maximum of 30 states now > > (number overfl

Re: [qooxdoo-devel] Secure and nonsecure warning in IE using https (SSL or TLS)

2008-07-24 Thread Hugh Gibson
> > It seems that this problem is related to > > http://bugzilla.qooxdoo.org/show_bug.cgi?id=890 bug #890 . > > Thanks, spot on. Looks like it's fixed in SVN now for 0.7.4, I'll > have to try it. Verified fixed now from SVN. Thanks! Hugh ---

Re: [qooxdoo-devel] problems when setting tableModel at runtime

2008-07-23 Thread Hugh Gibson
> if (rowInfo.row % 2 == 0) { > if (this._lastColor == this._colors.bgcolEven) > { > rowStyle.push(this._colors.bgcolOdd); > > this._lastColor = this._colors.bgcolOdd; > } > else >

Re: [qooxdoo-devel] New qooxdoo application

2008-07-21 Thread Hugh Gibson
> http://www.di-lemmata.de di-lemmata is a new project targeted at > scholars of German literature. I'm using IE7 in XP with script debugging turned on, and get an error when I click on an author: --- Error --- A Runtime Error has occurred. Do you

Re: [qooxdoo-devel] problems when setting tableModel at runtime

2008-07-21 Thread Hugh Gibson
> I was thinking about setting cellrenderer at runtime just after my > remote table is rendered. > > I need to compare the cell value with the previous row's cell > value. If there is a difference, I need to high light both of them > in red color. This should happen for all visible rows in the R

Re: [qooxdoo-devel] Table port to 0.8

2008-07-21 Thread Hugh Gibson
> I wanted to let you know that I have started porting the table to > 0.8. You've broken legacy_0_7_x with your checkin 14658. Paths don't match. Hugh - This SF.Net email is sponsored by the Moblin Your Move Developer's ch

Re: [qooxdoo-devel] using Simulator to select ComboBox item

2008-07-17 Thread Hugh Gibson
> > Looking at the DOM it appears that the menu is implemented by a > > table - I can see class qooxoo-table-cell for the div which > > contains > > the text in the drop-down list. > > > > Perhaps there is a problem with tables and Selenium - see the > > earlier code in test_showcase.js: > > I

Re: [qooxdoo-devel] Accessing callstack or similar

2008-07-15 Thread Hugh Gibson
> I'm trying to do something but keep running into a problem :( > I am working on a solution to easily create complicated window > layouts in a large application. The idea is to have a static member > of each window called "design" which describes the layout of each > window. I can do this OK, t

Re: [qooxdoo-devel] using Simulator to select ComboBox item

2008-07-15 Thread Hugh Gibson
> I'd rather prefer a more "semantic" abstraction in the > user extensions, and work-arounds in the client code. Agreed. > I don't think it > is a good idea to click by coordinates when there is a chance to > click on identifiable elements anyway. It should boil down to > intelligent locators

Re: [qooxdoo-devel] using Simulator to select ComboBox item

2008-07-14 Thread Hugh Gibson
> Looking at the DOM it appears that the menu is implemented by a > table - I can see class qooxoo-table-cell for the div which contains > the text in the drop-down list. > > Perhaps there is a problem with tables and Selenium - see the > earlier code in test_showcase.js: In an earlier thread I

Re: [qooxdoo-devel] using Simulator to select ComboBox item

2008-07-14 Thread Hugh Gibson
Thomas, I get the same result as Chi when using Selenium IDE. I can get the combo to drop down but can't select from it. Looking at the DOM it appears that the menu is implemented by a table - I can see class qooxoo-table-cell for the div which contains the text in the drop-down list. Perhaps th

Re: [qooxdoo-devel] IE & memory management

2008-07-02 Thread Hugh Gibson
> I am running into a troubling situation and am looking for a little > help. My application re-uses 'tool windows' to display new > information. It does so by removing all children (using a function I > wrote to iterate through all children, destroy them (they iterate > their children before dest

Re: [qooxdoo-devel] Secure and nonsecure warning in IE using https (SSL or TLS)

2008-07-02 Thread Hugh Gibson
> It seems that this problem is related to > http://bugzilla.qooxdoo.org/show_bug.cgi?id=890 bug #890 . Thanks, spot on. Looks like it's fixed in SVN now for 0.7.4, I'll have to try it. I searched for various keywords but missed 890. Hugh ---

Re: [qooxdoo-devel] Crash in Portal in IE7

2008-07-01 Thread Hugh Gibson
> I was playing with Portal in IE7 > (http://demo.qooxdoo.org/devel/portal/index.html ) dragging windows > around, reorganising, moving from one to the other, and was > dragging the > green sizer bars. > > I got a JS error: Line: 1 - Invalid Argument. Unfortunately I > couldn't run the debugger

[qooxdoo-devel] Crash in Portal in IE7

2008-07-01 Thread Hugh Gibson
I was playing with Portal in IE7 (http://demo.qooxdoo.org/devel/portal/index.html ) dragging windows around, reorganising, moving from one to the other, and was dragging the green sizer bars. I got a JS error: Line: 1 - Invalid Argument. Unfortunately I couldn't run the debugger - the browser loc

[qooxdoo-devel] Secure and nonsecure warning in IE using https (SSL or TLS)

2008-07-01 Thread Hugh Gibson
We've just been running our site using SSL (https). Mostly it's fine but occasionally when changing the screen we get the dialog saying "This page contains both secure and nonsecure items. Do you want to display the nonsecure items?" This last happened with iframe - see www.mail-archive.com/qooxd

Re: [qooxdoo-devel] Anyone needs switching locales and themes at runtime?

2008-06-23 Thread Hugh Gibson
> Why don't you simplify this: have the property system automatically > link to the locale manager if a property value "string" is not a > string but an instance of qx.locale.LocalisedString? Then if the > locale changes, automatically call the apply function with the > "toString" value of the pro

Re: [qooxdoo-devel] Problems with Mixins

2008-06-23 Thread Hugh Gibson
> The mixin constructor is called _after_ the normal constructor > rather than before. This is the wrong default. > > Why? Because the mixin can make no assumptions about the class it's > mixed in.. so it won't be calling or setting properties other than > its own. > > But the class using the m

Re: [qooxdoo-devel] mouse coordinates relative to widget

2008-06-23 Thread Hugh Gibson
> Does qooxdoo supports mouse coordinates relative to target widget? > I cannot find such feature. Asaris, you can find the coordinates of the target widget using: var oElement = oTargetWidget.getElement(); var oPosition = qx.bom.element.Location.get(oElement); I use that for

Re: [qooxdoo-devel] destruct() question

2008-06-23 Thread Hugh Gibson
> > And finally could I say that tracing the patches and reasons for > > changes is very difficult when you haven't got an issue for them, > > with full logging of issue number in SVN checkin messages; and SVN > > revision numbersin the issue. > > I see what you're hinting at. I'm not sure, thoug

  1   2   3   4   5   6   7   8   9   >