Re: [qooxdoo-devel] R: Fwd: Custom log window

2006-09-22 Thread Jim Hunter
This works if and only if you create the appender and add it to the logger AFTER the application has been drawn to the screen. So I had to add an event listener to a main piece of my app that once it has appeared I can then do the logger code and it worked. If you try and add the appender to the lo

Re: [qooxdoo-devel] Custom build errors

2006-09-22 Thread Sebastian Werner
Hi Anthony, fixed in SVN with revision 4326. Will also be part of 0.6.2. Thank you for your report. Cheers, Sebastian [EMAIL PROTECTED] schrieb: > Sebastian, > > I am trying to get the simplest scenario working so my command line is: > > framework/tool/generator/generator.py --script-input

Re: [qooxdoo-devel] Custom build errors

2006-09-22 Thread amilligan
Sebastian, I am trying to get the simplest scenario working so my command line is: framework/tool/generator/generator.py --script-input framework/source/class Thanks, Anthony > Hi, > > I am using Cygwin for my custom builds. In version 0.6 of the sdk I was > able to successfully build my .

Re: [qooxdoo-devel] Own object and access to data

2006-09-22 Thread frederic
I've found the solution ; The event on the button must declared like this : [...] wm1.add(b_test); b_test.addEventListener("execute",function(){ this.showMenu(); }); d.add(wm1); [...] "addEventLIstener" method written after the "add" method, strange ! frederic wrote: > > hello

[qooxdoo-devel] treegenerator bug

2006-09-22 Thread Alessandro Sala
Hi sebastian, I think I've found another bug, this time in treegenerator.py: when an expression starts with a pre-increment or pre-decrement operator and begins on a new line, soon after a loop or a block, the treegenerator produces the wrong tree, making the treecompiler produce wrong code (it t

[qooxdoo-devel] Custom build errors

2006-09-22 Thread amilligan
Hi, I am using Cygwin for my custom builds. In version 0.6 of the sdk I was able to successfully build my .js file but 0.6.1 is causing me problems. Cygwin won't let me copy the entire trace so that I can paste it here but the last line says: AttributeError: 'NoneType' object has no attribute 'st

[qooxdoo-devel] Own object and access to data

2006-09-22 Thread frederic
hello, I have this error message : ERROR: qx.ui.form.Button[180]: Could not dispatch event of type "execute": TypeError - myclass.test is not a constructor When I try this script "test.js" : qx.OO.defineClass("myclass.ui", qx.component.AbstractComponent, function() { qx.component.AbstractComp

Re: [qooxdoo-devel] Custom build errors

2006-09-22 Thread Sebastian Werner
Please send us your command line code which is the result of this error. Thanks. Sebastian [EMAIL PROTECTED] schrieb: > Hi, > > I am using Cygwin for my custom builds. In version 0.6 of the sdk I was > able to successfully build my .js file but 0.6.1 is causing me problems. > Cygwin won't let

Re: [qooxdoo-devel] IE Tab-navigation critical problem

2006-09-22 Thread Alex D.
> Wow. Cool. I've couldn't reproduce the problem you mentioned, but > found another problem while playing with the at-a-glance demo. > > Cool, if this ugly focus behavior has also fixed your version. > > Some technical details: The tab-key produced a window blur&focus event > in IE. This was bec

[qooxdoo-devel] Changing column head in tables using setDataAsMapArray

2006-09-22 Thread Jesus Perez
Hi: I would like to know if there is a way to have columns headers with a label with diferent value than the one is set with setColumns-head. Let me explain: if I use setDataAsMapArray the columns from the data array must match the setColumns values but I want to have in the screen a differe

Re: [qooxdoo-devel] IE Tab-navigation critical problem

2006-09-22 Thread Sebastian Werner
Wow. Cool. I've couldn't reproduce the problem you mentioned, but found another problem while playing with the at-a-glance demo. Cool, if this ugly focus behavior has also fixed your version. Some technical details: The tab-key produced a window blur&focus event in IE. This was because the blur

Re: [qooxdoo-devel] IE Tab-navigation critical problem

2006-09-22 Thread Alex D.
It works! Thx dude! What was the problem? BEST REGARDS, alex.d Hi! In SVN I've changed the behavior of combobox focus handling a bit. Maybe you wanna test your application with the SVN version, too. Thanks. Cheers, Sebastian Sebastian Werner schrieb: Hi Alex, are you able

[qooxdoo-devel] IE vs. ComboBox

2006-09-22 Thread Sebastian Werner
Hi! I've just detected and fixed an error where a ComboBox inside a application leads to a problematic focus handling when using the TAB key. This was buggy in IE exclusively. I've also updated the ComboBox to be better usable when editable. The need to press TAB 2 times to leave the ComboBox

Re: [qooxdoo-devel] In Popup.js, why qx.manager.object.MenuManager hint is set to 'optional'

2006-09-22 Thread Sebastian Werner
Charles SALMON schrieb: > Hello, > > I am building my own application based on Qooxdoo. > To build my app, I am using the generator with > --script-input $(FRAMEWORK)/source/class \ > --source-script-path ../$(FRAMEWORK)/source/class \ > --script-input source/class \ > --source-script-path cla

Re: [qooxdoo-devel] When focusing to a widget out of view, it should be shown

2006-09-22 Thread dperez
Hi, Created enhancement http://bugzilla.qooxdoo.org/show_bug.cgi?id=173 Sebastian Werner wrote: > > Yes, but please as enhancement. This is just a missing feature. And I > don't think that the implementation is really complicated. > -- View this message in context: http://www.nabble.com/W

Re: [qooxdoo-devel] generator.py : what is the meaning of 'could not confirm...'

2006-09-22 Thread Sebastian Werner
Hi! That means that the auto-dependency resolve does not find any reference to qx.manager.object.MenuManager in this class so it thinks that this is just an outdated information and wants to inform you about that. Cheers, Sebastian Charles SALMON schrieb: > Hello, > > I am using the gene

Re: [qooxdoo-devel] IE Tab-navigation critical problem

2006-09-22 Thread Sebastian Werner
Hi! In SVN I've changed the behavior of combobox focus handling a bit. Maybe you wanna test your application with the SVN version, too. Thanks. Cheers, Sebastian Sebastian Werner schrieb: > Hi Alex, > > are you able to reproduce this behavior with any of the qooxdoo demos? I > don't know w

[qooxdoo-devel] In Popup.js, why qx.manager.object.MenuManager hint is set to 'optional'

2006-09-22 Thread Charles SALMON
Hello,I am building my own application based on Qooxdoo.To build my app, I am using the generator with  --script-input $(FRAMEWORK)/source/class \ --source-script-path ../$(FRAMEWORK)/source/class \  --script-input source/class \ --source-script-path class \ --generate-source-script \ $(INCLUDE) $(

[qooxdoo-devel] generator.py : what is the meaning of 'could not confirm...'

2006-09-22 Thread Charles SALMON
Hello,I am using the generator with the 'include' facilities.In my hlight.ui.form.FormElementEntryLis, I put :#module(ui_form)#require(qx.manager.object.MenuManager)It seems that the source file of MenuManager is include in the output script, but generator .py tell me:  * Could not confirm #require

Re: [qooxdoo-devel] IE Tab-navigation critical problem

2006-09-22 Thread Sebastian Werner
Hi Alex, are you able to reproduce this behavior with any of the qooxdoo demos? I don't know what change should lead to this odd behavior. Cheers, Sebastian Alex D. schrieb: > Hi folks, > > i have here a very strange problem and i really have no ideas. Following: > while navigating with "TAB

Re: [qooxdoo-devel] When focusing to a widget out of view, it should be shown

2006-09-22 Thread Sebastian Werner
dperez schrieb: > Hi, > > I have a container with scrollbars. When pressing tab to cycle betwwen all > the focusable widgets, if the focus is transferred to a widget out of view > (because of the scrolling), it should be shown (by scrolling the container > to the right position). > > Should I add

[qooxdoo-devel] IE Tab-navigation critical problem

2006-09-22 Thread Alex D.
Hi folks, i have here a very strange problem and i really have no ideas. Following: while navigating with "TAB"(second or third TAB-keypress) in IE(6.x) from widget to widget(mostly TextFields, Labels and Comboboxes) Intenet Explorer causes 100% processor load and doesn't respond to any mouse/k

[qooxdoo-devel] When focusing to a widget out of view, it should be shown

2006-09-22 Thread dperez
Hi, I have a container with scrollbars. When pressing tab to cycle betwwen all the focusable widgets, if the focus is transferred to a widget out of view (because of the scrolling), it should be shown (by scrolling the container to the right position). Should I add this to BugZilla? Regards, Da

Re: [qooxdoo-devel] Minor release qooxdoo 0.6.1 ahead

2006-09-22 Thread Sebastian Werner
Yes, as I mentioned in my mail from yesterday, "compress" is just the wrong word, "optimize" is the better one. It is a good option for all mshtml based browsers, as it optimizes the performances in typical string operations. Cheers, Sebastian dperez schrieb: > Hi, > > The new version inde

Re: [qooxdoo-devel] Minor release qooxdoo 0.6.1 ahead

2006-09-22 Thread dperez
Hi, The new version indeed compiles much faster. :-) I have tried the new option --compress-strings, but produces an increase in the qx.js size: 895 k --> 922 k So, it doesn't compress the size at all. Andreas Ecker-2 wrote: > > Howdy, > > according to our goal to release more often and

[qooxdoo-devel] R: Fwd: Custom log window

2006-09-22 Thread Marco Emiliozzi
Take a look here: http://qooxdoo.org/documentation/user_manual/the_logging_system A snippet from the page: […] By default all log messages are logged to a WindowLogger. If you want all log messages to be logged into a div element having the id logging-div somewhere in your page, add the followin