Re: [qooxdoo-devel] Aptana editor

2006-10-06 Thread Mike Crowe
David and all, I *think* I have the interface working. Please review and LMK: http://qooxdoo.org/documentation/related_projects/aptana_ide Mike dperez wrote: > > Hi, > > Very interesting... > But Aptana will need some means of knowing qooxdoo specific ways of > defining classes and propertie

Re: [qooxdoo-devel] Table scrollbar trouble

2006-10-06 Thread Alessandro Sala
Hi Jim, Sebastian qx.ui.table.TablePane[127] 007249: Modification of property "visibleRowCount" failed with exception: TypeError - '$f' is null or not an object (#-2146823281 It seems the error is due to some problem in the new variableoptimizer module: when a property of an object is used as an

Re: [qooxdoo-devel] Builder() and TabPanes?

2006-10-06 Thread Mike Crowe
> I get the feeling that it is not widely used. Is anybody actually using > Builder() in a serious way ? Does it support all widgets ? Is there > some trick/secret that I'm missing ? That's starting to be my feeling too. Prior to the namespace revision, there was a QxBuilder project, which se

[qooxdoo-devel] qooxdoo and firefox extension

2006-10-06 Thread jamescowan
I am thinking of using qooxdoo rather than xul to build the ui in a firefox extension. If I add the standard qx.js to the standard helloworld extension, firefox cannot handle it - it just hangs. I have fiddled with generating the qx.js with --add-new-lines but I cannot find a simple way around i

Re: [qooxdoo-devel] this.getFocusRoot() has no properties error

2006-10-06 Thread Mike Crowe
[quote]It does not happen in the other browsers. [/quote] Actually, I'm getting this error in Firefox, not IE. However, that did solve the problem. Thanks Jim! - Take Surveys. Earn Cash. Influence the Future of IT Join Sour

Re: [qooxdoo-devel] Debugging in IE

2006-10-06 Thread Alex D.
Thx Alee, Visual Studio 6.0 has by default only Visual C++(the whole other stuff is extra). I will install VStudio 2005 i think. Best Regards, alex.d Hi alex.d, You can use Visual InterDev 6.0 or Visual J++ 6.0 from the suit. I dont think Visual C++ 6.0 supports _javascript_ debugging. Ho

Re: [qooxdoo-devel] Debugging in IE

2006-10-06 Thread Alee
Hi alex.d, You can use Visual InterDev 6.0 or Visual J++ 6.0 from the suit. I dont think Visual C++ 6.0 supports JavaScript debugging. Hope it helps. Regards, Alee alex.d wrote: > > Yes, it works with Script Debugger, but not with Visual Studio 6. What > Visual Studio version are you using

Re: [qooxdoo-devel] Debugging in IE

2006-10-06 Thread Alex D.
Yes, it works with Script Debugger, but not with Visual Studio 6. What Visual Studio version are you using? Is it possible that VSstudio 6 can not debug _javascript_? You must have installed some debugger. Visual Studio is much better than Script Debugger, although the latest is free. In add

Re: [qooxdoo-devel] this.getFocusRoot() has no properties error

2006-10-06 Thread Jim Hunter
It happens in IE if there are no controls with focus and you hit the ENTER/SHIFT/CTRL/ALT keys. It does not happen in the other browsers. I would classify this as an error. I suggest that after you close a window explicitly set the focus to some visible control. This will eliminate this error. JimO

Re: [qooxdoo-devel] Debugging in IE

2006-10-06 Thread dperez
You must have installed some debugger. Visual Studio is much better than Script Debugger, although the latest is free. In addition, you must restart the browser. alex.d wrote: > > Thank you for your detailed answer Alee, > > i have unchecked both options, but i still don't have "Script Debugge

Re: [qooxdoo-devel] Table scrollbar trouble

2006-10-06 Thread Til Schneider
Jim Hunter schrieb: > After a table is rendered, if the vertical space it has gets reduced to > the point that not all rows are displayed (assuming they all were > initially), then the vertical scrollbar does not get shown. The > scrollbar stays hidden. I fixed this in SVN (revision 4406). Than

Re: [qooxdoo-devel] Global events

2006-10-06 Thread Jim Hunter
Excellent, I have not yet used the skeletons as I had most of the application done when you introduced them. But I will take a look at them to see if there are some tips I can gain from them.Thanks,Jim On 10/6/06, Sebastian Werner <[EMAIL PROTECTED]> wrote: You can use defineFinalize or the finaliz

Re: [qooxdoo-devel] Global events

2006-10-06 Thread Sebastian Werner
You can use defineFinalize or the finalize method in your application. Please take a deeper look to the skeletons. It's already supported there. Cheers, Sebastian Jim Hunter schrieb: > Is there a global event that might get fired after a screen has been > rendered? What I am looking to do is

Re: [qooxdoo-devel] Builder() and TabPanes?

2006-10-06 Thread John Comerford
Hi Mike, You seem to be having the same response to your Builder question that I have been getting, ie. None. I am starting to wonder what the situation is with it. I am just starting to evaluate qooxdoo and using XML and Builder was a big plus for it, but so far I have found that a) There

Re: [qooxdoo-devel] Debugging in IE

2006-10-06 Thread Alex D.
Thank you for your detailed answer Alee, i have unchecked both options, but i still don't have "Script Debugger" in view-menu. Can it be due to the fact that i have currently no IDE installed? Regards, alex.d > Hi alex. d, > > Thought it will be better to make it a separate thread for those who

Re: [qooxdoo-devel] Global events

2006-10-06 Thread dperez
My previous solution is for the initial rendering. I also have this solved. My AJAX routine creates an indicator very similar to GMail. var pending = 0; function askData(url, callback) { if (pending++ == 0) { var el = document.createElement('div'); el.i

Re: [qooxdoo-devel] Global events

2006-10-06 Thread Jim Hunter
Unfortunately I make my calls from all over the place, not from one function so I don't have a central place to work from like you are doing. Each part of my application updates itself when needed, all asynchronously. This is why I was hoping that there was a global event that would get fired once

Re: [qooxdoo-devel] Aptana editor

2006-10-06 Thread dperez
Hi, Very interesting... But Aptana will need some means of knowing qooxdoo specific ways of defining classes and properties. Mike Crowe-3 wrote: > > I've tried duplicating the existing structure like Dojo, and can get > it partially working. Documentation is here on how: > http://aptana.com/d

Re: [qooxdoo-devel] this.getFocusRoot() has no properties error

2006-10-06 Thread dperez
Hi, This error isn't very harmful, but it also happens to me under the same conditions. It must be a bug in qx.ui.window.Window. Mike Crowe-4 wrote: > > Hi folks, > > What might cause this error? It seems to occur after I popup a modal > window, or popup a DateChooser. > -- View this mes