Re: [qooxdoo-devel] Newbie question about Qx 0.6 build system

2006-09-21 Thread Simon Bull
Jim Hunter epiuniverse.com> writes: > > > To start with, Javascript doesn't know anything about your file system, and by definition, it can't. You have to declare everything in Javascript. I suggest looking through the source code to see how it's done in qooxdoo. The qooxdoo classes don't get t

[qooxdoo-devel] String compression (replacement) optimized

2006-09-21 Thread Sebastian Werner
Hi! A minor optimization to the build system (again ;). I've just added to support caching for the string compression. In the same step I've renamed the argument from --compress-strings to --optimize-strings which is just more correct and hopefully better explains what this flag does. The perf

[qooxdoo-devel] Fwd: Custom log window

2006-09-21 Thread Jim Hunter
I sent this out a few days ago but din't get a nibble. Anyone have any ideas on this?-- Forwarded message --From: Jim Hunter < [EMAIL PROTECTED]>Date: Sep 19, 2006 12:24 PMSubject: Custom log windowTo: qooxdoo Development I have searched the arc

Re: [qooxdoo-devel] Client Context Menu in Firefox(Unix)

2006-09-21 Thread thetreed1
Yep, that was it. Hmm never new that existed. Thanks! dperez wrote: > > I know Firefox has the option of turning off the possibility of client > Javascript code disabling context menu. > Look at the FF preferences. > > > thetreed1 wrote: >> >> I am having an issue with the right click cont

Re: [qooxdoo-devel] Client Context Menu in Firefox(Unix)

2006-09-21 Thread dperez
I know Firefox has the option of turning off the possibility of client Javascript code disabling context menu. Look at the FF preferences. thetreed1 wrote: > > I am having an issue with the right click context menu in Firefox for Unix > in qooxdoo 0.5.2. Even thought I explicitly turn off the

Re: [qooxdoo-devel] qx.io.remote.rpc error-bubbling

2006-09-21 Thread Alex D.
Hi Derel, Hi Alex, It's that FATAL error you're receiving that I've not been able to catch. Any time the PHP script outputs anything (including this error message), it gets sent back to the browser. We don't want that. The part of the message that we want is the last line beginning wit

Re: [qooxdoo-devel] Disposing of objects

2006-09-21 Thread Jim Hunter
That was why I tried to come up with a way to dispose of all children. When I did a removeAll() it did remove them from the layout they were on and apparently simply moved them to the main document as they continued to be visible behind the new stuff I created. There is still a problem with the di

Re: [qooxdoo-devel] qx.io.remote.rpc error-bubbling

2006-09-21 Thread Derrell . Lipman
"Alex D." <[EMAIL PROTECTED]> writes: > > Warning: pg_connect() [ href='function.pg-connect'>function.pg-connect]: Unable to connect to > PostgreSQL server: FATAL: database "test" does not exist > in C:\.php on line 267 > {"error":{"origin":2,"code":5,"message":"Kann keine Verbindung

[qooxdoo-devel] Client Context Menu in Firefox(Unix)

2006-09-21 Thread thetreed1
I am having an issue with the right click context menu in Firefox for Unix in qooxdoo 0.5.2. Even thought I explicitly turn off the client context menu (this.getClientWindow().getEventManager().setAllowClientContextMenu(false);) I still get the browsers menu. This only happens in Firefox for Uni

Re: [qooxdoo-devel] qx.ui.table.Table drag and drop

2006-09-21 Thread dperez
Hi all, One possible challenge I see is that the table rows aren't real widgets. dperez wrote: > > Hi, > > Has anyone tried successfully drag and drop in qx.ui.table.Table, in order > to change the sort order of the rows? > Is it feasible? > > I haven't still tried drag and drop in qooxdoo,

Re: [qooxdoo-devel] porting an app from 0.5 to 0.6.1

2006-09-21 Thread dperez
Hi, I haven't had much trouble in migrating my whole app. The changes are mainly changing the Qx preffix by the namespace. e.g.: QxLabel --> qx.ui.basic.Label. junglist wrote: > > Hi Robert, > > we have exactly the same problem and i strongly doubt that there's a way > to convert your whole

[qooxdoo-devel] qx.ui.table.Table drag and drop

2006-09-21 Thread dperez
Hi, Has anyone tried successfully drag and drop in qx.ui.table.Table, in order to change the sort order of the rows? Is it feasible? I haven't still tried drag and drop in qooxdoo, but available samples look like very basic. Thanks in advance for any tip. Regards, David -- View this message i

Re: [qooxdoo-devel] porting an app from 0.5 to 0.6.1

2006-09-21 Thread Hugh Gibson
> Many things have changed, and > seems like most of the app would need to be rewritten. Is there > another way, maybe with some automatic tool? Searching on "migration" at www.qooxdoo.org gives: http://qooxdoo.org/documentation/user_manual/migration_support Hugh ---

Re: [qooxdoo-devel] porting an app from 0.5 to 0.6.1

2006-09-21 Thread junglist
Hi Robert, we have exactly the same problem and i wouldnt strongly doubt that there's a way to convert your whole application from 0.5 to namespaces. i don't know about documentation but i assume it's poor like it always was. check the api reference, the demo htmls and the qooxdoo classes themse

[qooxdoo-devel] porting an app from 0.5 to 0.6.1

2006-09-21 Thread Robert
Hello all, We've been building an app with version 0.5. Because of the limitations of ListView, want to upgrade everything to 0.6.1, but couldn't find an easy way to do this. Many things have changed, and seems like most of the app would need to be rewritten. Is there another way, maybe with some

Re: [qooxdoo-devel] RemoteRequest problem

2006-09-21 Thread Andreas Junghans
Hi, Am 21.09.2006 um 11:58 schrieb Dietrich Streifert: > I think the best would be to add a property > "encodePrameters" (boolean default false) to > qx.io.remote.AbstractRemoteTransport (where XmlHttpTransport is > derived from) and make the encoding via encodeURIcomponent() depend > on

Re: [qooxdoo-devel] RemoteRequest problem

2006-09-21 Thread Dietrich Streifert
It seems that Derrell applied the patch to svn with rev. 4291: Modified: trunk/qooxdoo/frontend/framework/source/class/qx/io/remote/XmlHttpTransport.js === --- trunk/qooxdoo/frontend/framework/source/class/qx/io/remote/XmlHttpTran

Re: [qooxdoo-devel] RemoteRequest problem

2006-09-21 Thread Dietrich Streifert
I think the best would be to add a property "encodePrameters" (boolean default false) to qx.io.remote.AbstractRemoteTransport (where XmlHttpTransport is derived from) and make the encoding via encodeURIcomponent() depend on this property. Ricardo Borillo schrieb: Sebastian, It's ok Fabian's

Re: [qooxdoo-devel] RemoteRequest problem

2006-09-21 Thread Andreas Junghans
Hi, Am 21.09.2006 um 11:44 schrieb Ricardo Borillo: > Sebastian, > > It's ok Fabian's patch or we open a bug? [snip] > -vParametersList.push(vId + qx.constant.Core.EQUAL + vParameters > [vId]); > > +vParametersList.push(escape(vId) + qx.constant.Core.EQUAL + > escape(vParameters[vId]

Re: [qooxdoo-devel] RemoteRequest problem

2006-09-21 Thread Ricardo Borillo
Sebastian,It's ok Fabian's patch or we open a bug?On 9/18/06, Ricardo Borillo <[EMAIL PROTECTED]> wrote: Hi,I agree with you. This patch should solve the problem. On 9/18/06, Fabian Jakobs <[EMAIL PROTECTED] > wrote: Hi All,   I would consider this a bug in the transport layer. In

[qooxdoo-devel] Categorized wish list

2006-09-21 Thread dperez
Hi all, I have categorized the wish list: http://qooxdoo.org/community/wishlist because it starts having too many items. I have added some more wishes. Regards David -- View this message in context: http://www.nabble.com/Categorized-wish-list-tf2310676.html#a6424362 Sent from the qooxdoo-deve

Re: [qooxdoo-devel] Treefullcontrol headers

2006-09-21 Thread dperez
Thanks Derrell for your clarification. Added this to http://qooxdoo.org/community/wishlist Derrell.Lipman wrote: > > The current Tree implementations do not provide a facility for headers. > You'll have to build them by hand for Tree and TreeFullControl, for the > time > being. In the future.

Re: [qooxdoo-devel] Horizontal scrolling and horizontal centering bug

2006-09-21 Thread dperez
Hi, Opened this bug http://bugzilla.qooxdoo.org/show_bug.cgi?id=169 for this problem. dperez wrote: > > Hi, > > I've noticed the following problem: > > I have nested BoxLayouts. In the top level one, I set this property: >myLayout.setOverflow('scroll'); > > When I resize the browser w

Re: [qooxdoo-devel] How to add a property and function to a class from another js file

2006-09-21 Thread Dietrich Streifert
Try this instead:   var constructor = qx.OO.classes["qx.core.Object"];   qx.Proto = constructor.prototype;   qx.OO.addProperty({ name: "myproperty", type: qx.constant.Type.STRING, defaultValue: null}); Charles SALMON schrieb: Hello, In qooxdoo 0.5, I was able to add some properties (and

[qooxdoo-devel] How to add a property and function to a class from another js file

2006-09-21 Thread Charles SALMON
Hello,In qooxdoo 0.5, I was able to add some properties (and functions) to QxObject, WITHOUT having to modify the QxObject.js file, by doing:QxObject.addProperty(...)  for propand QxObject.prototype.new_function = function () {...} for function.in my 'qooxdooPatch.js' _javascript_ file.Now, in 0.6

Re: [qooxdoo-devel] Disposing of objects

2006-09-21 Thread dperez
Sebastian, Don't you remember that I discovered that removeAll() doesn't dispose children, just changes their parent?. Sebastian Werner wrote: > > remove and removeAll should definitely work. There are examples (in > test) which shows this. And it's working. Maybe a *small* example would > b

Re: [qooxdoo-devel] qx.io.remote.rpc error-bubbling

2006-09-21 Thread Alex D.
Hi Derel, First of all - thank you for your efforts. And i think it's a misunderstanding - the problem is not that the function pg_connect() does not exist, but that the database doesn't exist. I have already secured pg_connect() with: === $db = pg_connect("host=$

[qooxdoo-devel] AJAX and Qooxdoo

2006-09-21 Thread dperez
Hi, I have found the cause of a strange error when using AJAX. If an AJAX event updates the GUI, it must call qx.ui.core.Widget.flushGlobalQueues(). I didn't do so and don't perceive any side effect, except if too many AJAX events were received too quickly. Then the internal state of qooxdoo was

Re: [qooxdoo-devel] Problem in demo.qooxdoo.org

2006-09-21 Thread Ricardo Borillo
Ups. I didn't know it. Thanks :)On 9/21/06, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote:"Ricardo Borillo" < [EMAIL PROTECTED]> writes:> I have a problem with> http://demo.qooxdoo.org/html/example/RpcTreeFullControl_1.html.> I get an HTTP Error 404: Not found. >> Perhaps some RPC services are down?