Re: [qooxdoo-devel] problem with build namespaces branch

2006-06-28 Thread Til Schneider
> I have a problem with building qooxdoo.js und windows xp and cygwin. If you are trying to build the namespaces branch, then use tools/generate-dev/build.py instead (Here you can turn newlines on by using the command line parameter "--compile-with-new-lines"). -- Using Tomcat but need to d

[qooxdoo-devel] can you gave me qooxdoo API Documentation?

2006-06-28 Thread hotcicada
hi all, I don't know how to compile the qooxdoo API docs,can you email one to me? thanks! my email: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/can-you-gave-me--qooxdoo-API-Documentation--tf1865596.html#a5097240 Sent from the qooxdoo-devel forum at Nabble.com.

[qooxdoo-devel] Add Qx Objects in a DOM Object

2006-06-28 Thread ACampelo
Hi, I?m starting using Qooxdoo and I'm trying solve a little question. I would like to add a QxTabViewPage im my HTML page. I have a with id="div01". I tryed with this (inside a file called test.js): var tf1 = new QxTabView; tf1.set({ left: 20, top: 48, right: 335, bottom: 48 }); var t1_1 = n

Re: [qooxdoo-devel] TablePane dispose dereferences non-existent property

2006-06-28 Thread Lothar Kaiser
Greeting from Munich :-) that's exactly what went wrong with the Table disposer. Thanks for the fast cure. cheers, Lothar Am Mittwoch, den 28.06.2006, 16:56 -0400 schrieb [EMAIL PROTECTED]: > Til, > > In IE, when the Table tests unload, e.g. when moving to another test or when > pressing C

[qooxdoo-devel] TablePane dispose dereferences non-existent property

2006-06-28 Thread Derrell . Lipman
Til, In IE, when the Table tests unload, e.g. when moving to another test or when pressing CTRL-R, they generate an error while trying to dispose the TablePane object. The problem is that TablePane.dispose() calls the GridLayout dispose function, but TablePane does not extend GridLayout, it exten

[qooxdoo-devel] problem with build namespaces branch

2006-06-28 Thread Erich Konicek
Hi, I have a problem with building qooxdoo.js und windows xp and cygwin. After building and loading qooxdoo.js, the browser (firefox 1.5) brings the following message in the JavaScript-Console: Fehler: unterminated regular expression literal Quelldatei: file:///S:/qooxdoo/build/script/qooxdoo.js

Re: [qooxdoo-devel] QxTabView inside a QxBoxLayout seems buggy

2006-06-28 Thread Derrell . Lipman
"Charles SALMON" <[EMAIL PROTECTED]> writes: > If I try to put a QxTabView inside a QxBoxLayout (which is then added to > document), then QxTabView is badly rendered: QxTabViewPages loose their > borders, background color, ... > > See attached file for an example. > My Navigator is Firefox 1.5. H

Re: [qooxdoo-devel] qx.ui.table.Table dispose() problem

2006-06-28 Thread Derrell . Lipman
Lothar Kaiser <[EMAIL PROTECTED]> writes: > after switching to namespaces we changed our former QxListViews to Til's > new qx.ui.table.Table. The Table is very nice, well done... > > However we came across a bug when trying to disposing it. I attached a > file where you can see that behaviour...

[qooxdoo-devel] QxTabView inside a QxBoxLayout seems buggy

2006-06-28 Thread Charles SALMON
Hi all,If I try to put a QxTabView inside a QxBoxLayout (which is then added to document),then QxTabView is badly rendered: QxTabViewPages loose their borders, background color, ...See attached file for an example. My Navigator is Firefox 1.5.Thanks,Charles. Title: qooxdoo demo Tabb

[qooxdoo-devel] qx.ui.table.Table dispose() problem

2006-06-28 Thread Lothar Kaiser
Hi all, after switching to namespaces we changed our former QxListViews to Til's new qx.ui.table.Table. The Table is very nice, well done... However we came across a bug when trying to disposing it. I attached a file where you can see that behaviour... cheers, Lothar Title: qooxdoo demo

Re: [qooxdoo-devel] How do I generate the documentation in the namespace branch?

2006-06-28 Thread Til Schneider
> Yes, the patch fixes the problem. Now it works fine! Perfect! Then I'll commit the patch. -- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.

Re: [qooxdoo-devel] How do I generate the documentation in the namespace branch?

2006-06-28 Thread Erich Konicek
Til Schneider schrieb: >> I think the problem is, that there are linefeeds before "\n" in >> multiline texts. Maybe. > > Right, I think this is the problem. These are no linefeeds, but > carriage returns. Could you check, whether the attached patch fixes it? > Yes, the patch fixes the problem. N

Re: [qooxdoo-devel] How do I generate the documentation in the namespace branch?

2006-06-28 Thread Til Schneider
I think the problem is, that there are linefeeds before "\n" in multiline texts. Maybe. Right, I think this is the problem. These are no linefeeds, but carriage returns. Could you check, whether the attached patch fixes it? -- Index: /home/tschneider/Projekte/qooxdoo.namespaces/tools/generat

Re: [qooxdoo-devel] QxImage and getLoaded

2006-06-28 Thread Reed, Tim (US SSA)
That was it. I needed to add the image object to the application at startup. I was always removing and adding the QxImage. That is much happier now. Thanks a bunch. Timothy Reed Software Engineer BAE Systems - National Security Solutions 428 Phoenix Drive Griffiss Business & Technology

Re: [qooxdoo-devel] QxImage and getLoaded

2006-06-28 Thread Andreas Ecker
Hi, Tim! Reed, Tim (US SSA) wrote: > Thanks, that works better. But for some reason I still have to move the > mouse before the event will fire and the image loads. Any ideas? Sounds like your image is not added to the document or any visible widget at application startup? qooxdoo is smart i

Re: [qooxdoo-devel] QxImage and getLoaded

2006-06-28 Thread Reed, Tim (US SSA)
Thanks, that works better. But for some reason I still have to move the mouse before the event will fire and the image loads. Any ideas? Timothy Reed Software Engineer BAE Systems - National Security Solutions 428 Phoenix Drive Griffiss Business & Technology Park Rome, NY 13441 Phone: (

Re: [qooxdoo-devel] QxImage and getLoaded

2006-06-28 Thread Andreas Ecker
Howdy! You may want to try the following image.addEventListener("changeLoaded", function(e) { e.getData() && ( YOUR CODE HERE ); }); to handle the change of "loaded" to true. It might help to read the documentation of qooxdoo's powerful event system, particularly the so-called property

[qooxdoo-devel] Problem running namespace branch

2006-06-28 Thread Stefan Gehrig
Hi all together, I just downloaded the namespace branch of Qooxdoo via SVN and compiled everything just as stated in the documentation. But if I try to run the pages in the demo-directory (Build) I get the following error messages and the qooxdoo-pages do not appear (I don't know the correct word

Re: [qooxdoo-devel] How do I generate the documentation in the namespace branch?

2006-06-28 Thread Henric Johansson
We are are running the script on Debian Stable /Henric -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] För Til Schneider Skickat: den 28 juni 2006 11:22 Till: qooxdoo Development Ämne: Re: [qooxdoo-devel] How do I generate the documentation in the namespace br

Re: [qooxdoo-devel] How do I generate the documentation in the namespace branch?

2006-06-28 Thread Erich Konicek
Til Schneider schrieb: But we have trouble building the documentation. We have done all the steps described in the wiki, but still can't get it to work. In which environment are you building the documentation. Are you using cygwin in windows? Hi! I have the same problem

Re: [qooxdoo-devel] How do I generate the documentation in the namespace branch?

2006-06-28 Thread Til Schneider
> But we have trouble building the documentation. We have done all the > steps described in the wiki, but still can't get it to work. In which environment are you building the documentation. Are you using cygwin in windows? -- Using Tomcat but need to do more? Need to support web services, se