Re: [qooxdoo-devel] drag and drop with lists

2007-03-28 Thread Joe Hudson
I would have before but I'm a little bit embarrassed of my code as I'm still figuring all this out but, here it is code that will allow you to move items around in a list... var myList = new qx.ui.form.List("myList"); myList.getManager().setMultiSelection(false); d.add(myList); myList.add(newDragL

Re: [qooxdoo-devel] drag and drop with lists

2007-03-28 Thread sub
It's always nice to post your thoughts/answers incase some one else is searching for a similar issue. Joe Hudson-2 wrote: > > Forget my question… I figured it out :-) Thanks. > -- View this message in context: http://www.nabble.com/drag-and-drop-with-lists-tf3482274.html#a9722310 Sent fr

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

Re: [qooxdoo-devel] drag and drop with lists

2007-03-28 Thread Joe Hudson
Forget my question… I figured it out :-) Thanks. Joe _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joe Hudson Sent: Wednesday, March 28, 2007 2:58 PM To: 'qooxdoo Development' Subject: [qooxdoo-devel] drag and drop with lists Are there any good examples sho

Re: [qooxdoo-devel] simple question - how to get real position and size of a widget?

2007-03-28 Thread Derrell . Lipman
Erich Konicek <[EMAIL PROTECTED]> writes: > How can I determine the current position (top/left within the > ClientDocument or the Parent) and the current size (height/width) of an > auto-layout-widget? You can generally do that with the methods in qx.lang.Location and qx.lang.Offset. Note that

Re: [qooxdoo-devel] how to catch table selection click event

2007-03-28 Thread Derrell . Lipman
[EMAIL PROTECTED] writes: > "Joe Hudson" <[EMAIL PROTECTED]> writes: > >> Again, thank you very much for the help Derrell. >> >> If I want to have a column that exists in the model but is not displayed, >> how would I do that? > > table.getTableColumnModel().setColumnVisible(columnNumber, false);

[qooxdoo-devel] drag and drop with lists

2007-03-28 Thread Joe Hudson
Are there any good examples showing how to drag and drop with lists? I’m trying to figure out how to move items around in a list using drag and drop and am having some trouble. Can anybody help me with this? Thank you very much. What I have so far (which is not working) is below: testList = ne

Re: [qooxdoo-devel] Qooxdoo RPC and PHP session_id

2007-03-28 Thread Andreas Junghans
Hi Marcel, Am 28.03.2007 um 17:44 schrieb 3epnm: > i'm using the qx.io.remote.Rpc() with PHP5 services with the firefox > webbrowser without any problems - the same script has problems with > internet explorer 6. > > I find out, that the IE does not transport the php session_id in rpc > calls. To

[qooxdoo-devel] Removing a selected TreeFolder from a Tree (qx.ui.treefullcontrol)

2007-03-28 Thread Ralf Sternberg
Hi, I get a JavaScript error after removing a currently selected TreeFolder item from a Tree (using the qx.ui.treefullcontrol classes). After the selected item has been removed, there is no item selected anymore. The error occurs when another item is selected thereafter: qx.manager.selectio

[qooxdoo-devel] Qooxdoo RPC and PHP session_id

2007-03-28 Thread 3epnm
Hi, i'm using the qx.io.remote.Rpc() with PHP5 services with the firefox webbrowser without any problems - the same script has problems with internet explorer 6. I find out, that the IE does not transport the php session_id in rpc calls. To solve this problem, i hacked the qx.io.remote.Request(

Re: [qooxdoo-devel] qx is not defined

2007-03-28 Thread Jim Hunter
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. Jim On 3/28/07, David M <[EMAIL PROTECTED]> wrote: This was not a qx problem, but a brow

[qooxdoo-devel] Is there a Google Maps widget?

2007-03-28 Thread Joe Hudson
I swear I saw some docs about this previously but I can’t find it again. Does anybody know how to integrate with Google Maps? Thanks. Joe Hudson -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.5.446 / Virus Database: 268.18.20/736 - Release Date: 3/27/2007 4:

Re: [qooxdoo-devel] table header resize listener

2007-03-28 Thread Dietrich Streifert
Hi Alexander, This is well documented by the api viewer: http://demo.qooxdoo.org/current/apiviewer/#qx.ui.table.TableColumnModel It is the "widthChanged" event. Alexander Weisser schrieb: > Hi, > for each column in the Table i have a ComboBoxEx upper the Table. In this > ComboBox you can selec

Re: [qooxdoo-devel] table header resize listener

2007-03-28 Thread dperez
Maybe setting the width of the combobox to 100% works. Alexander Weisser wrote: > > Hi, > for each column in the Table i have a ComboBoxEx upper the Table. In this > ComboBox you can select a value, then the table is filtered by this value. > > So now i want to sync the columnSize an the combo

Re: [qooxdoo-devel] how to catch table selection click event

2007-03-28 Thread Joe Hudson
I tried it and couldn't get it to work. I just assumed I was doing something stupid and didn't want to keep bugging the list about my problems. Joe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, March 28, 2007 8:16 AM

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

[qooxdoo-devel] table header resize listener

2007-03-28 Thread Alexander Weisser
Hi, for each column in the Table i have a ComboBoxEx upper the Table. In this ComboBox you can select a value from the column an then the table is filtered by this value. So now i want to sync the columnSize an the comboBoxEx size. I know how to set the size of the ComboBox. it works great. But i

Re: [qooxdoo-devel] how to catch table selection click event

2007-03-28 Thread Derrell . Lipman
dperez <[EMAIL PROTECTED]> writes: > This is in theory. I have reported a bug, stating this doesn't work, at > least in 0.6.6. :-( It still doesn't work after my fixes last week? Derrell > Derrell.Lipman wrote: >> >> "Joe Hudson" <[EMAIL PROTECTED]> writes: >> >>> Again, thank you very muc

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
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] simple question - how to get real position and size of a widget?

2007-03-28 Thread Erich Konicek
Hi, thanks, but in my example top and left return an empty string. I made a small test derived from example/SplitPane_1 and attached it. In the lower right area is a button who shows the style-values of this area. top and left are empty. Erich dperez schrieb: Hi, Widget has a property called e

Re: [qooxdoo-devel] qx is not defined

2007-03-28 Thread Jim Hunter
I only use FireFox 2.0 for testing my apps, it works fine. i do not use Venkman though, that might be the problem. Jim On 3/28/07, David M <[EMAIL PROTECTED]> wrote: 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

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 >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 Jim Hunter
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 works. But if t

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 >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 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] how to catch table selection click event

2007-03-28 Thread dperez
This is in theory. I have reported a bug, stating this doesn't work, at least in 0.6.6. :-( Derrell.Lipman wrote: > > "Joe Hudson" <[EMAIL PROTECTED]> writes: > >> Again, thank you very much for the help Derrell. >> >> If I want to have a column that exists in the model but is not displayed