Re: [qooxdoo-devel] qooxdoo + Borland (CodeGear)

2007-02-25 Thread David M
>When will be released ? > March 2007 You can pre order now. though. Cheers D David Moorhouse Moorhouse Works ltd www.moorhouse.co.nz - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay p

[qooxdoo-devel] Gecko browsers: zoom

2007-02-28 Thread David M
When using the zoom feature of Gecko browsers (e.g. Moz1.7 and FF2.0) the widgets do not scale with the text. E.g. open the API viewer and press Ctrl + twice to enlarge the text. The tree view on the left becomes very jumbled. This is unacceptableas it breaks one of the key features of the Geck

[qooxdoo-devel] Qooxdoo Data Manager Extensions

2007-03-01 Thread David M
Hi Are the data manager extensions still being developed and supported ? http://qooxdoo.org/documentation/related_projects/php_qxbuilder (The documentation talks about not suppporting for the "namespaces" branch, which I presume is the 0.6x series of releases.) SVN shows last changes 7 months ago.

Re: [qooxdoo-devel] Qooxdoo Data Manager Extensions

2007-03-04 Thread David M
Hi Christian > >I stopped working on the stuff because qooxdoo was such a moving target >that I could never keep up with the change of the API. Yes, I see what you mean >Maybe I will >return to it once we get closer to 1.0. I still think it is a good idea >to provide a uniform data binding

[qooxdoo-devel] Read Only properties

2007-03-06 Thread David M
Hi Is there any support for read only properties ? e.g. qx.OO.addProperty({ name : "isChanged", type : "boolean", defaultValue : false, readOnly: true }); Or do I need to fudge the issue by reimplementing the modify method (i.e. ignore the requested change) ? e.g. qx.Proto._modifyIsChanged = f

Re: [qooxdoo-devel] Read Only properties

2007-03-07 Thread David M
Hi Fabian >There is no support for read only properties in qooxdoo but why don't >you just write the getter and don't use the properties for this? > >getName : function() { return this._name; } > >and set this._name for example in the constructor. I'm still coming up to speed with qooxdoo but y

Re: [qooxdoo-devel] Delphi 4 PHP

2007-03-16 Thread David M
Just to add some more info I've been watching the demo on the Codegear site. The demo is being designed in a RAD style IDE, and there in code editor the background is qooxdoo code. Cool or what ! Cheers D David Moorhouse Moorhouse Works ltd www.moorhouse.co.nz --

Re: [qooxdoo-devel] problem with qx.ui.table

2007-03-20 Thread David M
Hi Hugh >> Is there a way to have a persistant id in the >> table not shown to the user? > >See my other email this morning. > Can you post the answer please as I can't see the email you were referring to. Thanks D David Moorhouse Moorhouse Works ltd www.moorhouse.co.nz

Re: [qooxdoo-devel] problem with qx.ui.table

2007-03-22 Thread David M
Hi Hugh >See this thread: >http://www.nabble.com/bug-in-feedreader-demo-tf3386121.html#a9463583 > >My first answer didn't help because the way the simple table model reformats >the data. You need to use the remote table model but don't get the table >remotely - just supply it out of your own s

[qooxdoo-devel] qx is not defined

2007-03-27 Thread David M
Hi I'm using the new Delphi 4 PHP in trial mode. When I run a simple data access app in FF (with FireBug) I get the following 3 errors qx is not defined [Break on this error] var d = qx.ui.core.ClientDocument.getInstance(); unit4.php (line 30) qx is not defined [Break on this error] undefined un

[qooxdoo-devel] qx is not defined

2007-03-27 Thread David M
Hi I'm using the new Delphi 4 PHP in trial mode. When I run a simple data access app in FF (with FireBug) I get the following 3 errors qx is not defined [Break on this error] var d = qx.ui.core.ClientDocument.getInstance(); unit4.php (line 30) qx is not defined [Break on this error] undefined un

Re: [qooxdoo-devel] qx is not defined

2007-03-28 Thread David M
Hi Jim >What controls do you have on your form? Did you add any JavaScript or PHP >code to the form or is this 100% drag and drop of components? Are you >getting this error running locally or did you post everything to a server >for testing? I've added the controls for the data: database, table

Re: [qooxdoo-devel] qx is not defined

2007-03-28 Thread David M
Hi Jim >Delphi for PHP does not always include qx.js, it depends on the controls on >the form. If you have a form that only has an edit box on it, then qx.js is >not included. And if you then try to create a qx control via code, you will >get this error. This is why I asked all the questions, I wa

Re: [qooxdoo-devel] qx is not defined

2007-03-28 Thread David M
Hi >It looks like qx.js isn't included, or the script has some syntax error. > Hmmm, I've just installed it so I doubt there is an error in the qx.js. But who knows ... The path in the source file is file:///e:/codegear/delphi4php/1.0/vcl/qooxdoo/framework/script/qx.js I can browse to that i

Re: [qooxdoo-devel] qx is not defined

2007-03-28 Thread David M
Hi Jim >Drop a Window control on the page and see if that makes the error go away. I >have not manually added those controls toa page, I usually drag them from >the Database Manager and it automatically creates all the components, the >grid and links them all up for me. And when I run it just work

Re: [qooxdoo-devel] qx is not defined

2007-03-28 Thread David M
And some more info ... It displays in IE6 - but the height of the rows is too small so the data is hard to read. Is this a js problem ? When I use the Venkman debugger in Moz or FF, the qx.js library is not loaded - which is what the Firebug error is telling us. So - my hunch is that the javasc

Re: [qooxdoo-devel] qx is not defined

2007-03-28 Thread David M
Hi Jim Thanks for your help This looks bigger than a qx problem. I've been playing around with some other controls. The clock control brings up dynapi is not defined [Break on this error] dynapi.document.insertChild(Clock1); unit5.php (line 68) Template is not defined [Break on this error] v

Re: [qooxdoo-devel] qx is not defined

2007-03-28 Thread David M
Some progress to report I've copied the source of the page into a new html file - saved it locally and changed the file:/// to file:// (i.e. 3 slashes are now 2 slashes) and BINGO it works WTF ?? Time to see what google has to say about this eh. Cheers D David Moorhouse Moorhouse Wo

Re: [qooxdoo-devel] qx is not defined

2007-03-28 Thread David M
This was not a qx problem, but a browser permission problem. For security purposes, Firefox and Mozilla Suite block links to local files (and directories) from remote files. This includes linking to files on your hard drive, on mapped network drives, and accessible via UNC paths. This prevents a

Re: [qooxdoo-devel] qx is not defined

2007-03-28 Thread David M
Hi Jim >In a deployed application, you don't need the special file. It is only >needed locally or you can go into the Options menu and allow local file >access. I changed that so long ago I forgot about it, sorry. FF options menu ? I presume we're talking about Tools | Options. But I can't fin