Re: [qooxdoo-devel] Tree/Treevirtual and the openCloseClickSelectsRow Property

2007-07-16 Thread C.Bieser
I'll try it. Thanks Derrell Lipman wrote: > > It looks like if you override the _onmousedown() method in the > TreeFolder class, you should be able to attain the result ou're > looking for. It manually calls the selection manager to handle a > mousedown event, so you could arrange for it to no

[qooxdoo-devel] FYI: qx.util.Md5

2007-07-16 Thread C.Bieser
Hello, as I needed MD5 I've written the function. It works, so if you want to add it to the Qooxdoo trunk (after cleaning it up)... Christian [code] qx.Class.define( "qx.util.Md5", { statics : { _ASCII : "01234567890123456789012345678901 !\"#$%&'()*+,-./01234

[qooxdoo-devel] Tree/Treevirtual and the openCloseClickSelectsRow Property

2007-07-13 Thread C.Bieser
Hello, is it possible to migrate the openCloseClickSelectsRow Property from Treevirtual to Tree? Or: Is it possible to change the Tree in a way that openCloseClickSelectsRow is deactivated (not as a property but as function)? Christian -- View this message in context: http://www.nabble.com/T

Re: [qooxdoo-devel] CrossDomain Request

2007-07-02 Thread C.Bieser
Derrell Lipman wrote: > > I don't believe this has anything to do with cross domain or > otherwise, except that the cross-domain response may be different than > a non-cross-domain response that you test with. > The response is exactly the same. If I enable CrossDomain and keep the URI the sam

[qooxdoo-devel] CrossDomain Request

2007-07-02 Thread C.Bieser
Hello together, I've a little Problem. I want to use a HTTPS connection for the Requests of my Application but if I enable CrossDomain I got this error: - invalid label (no name)()AbstractTreeEleme... (line 287) (no name)()AbstractTreeEleme... (line 315) (no name)(true, null)TreeFolder.js (l

[qooxdoo-devel] Cancel disappear

2007-06-21 Thread C.Bieser
Hello together, I have still my Problem to cancel the disappear of a Custom Widget. Following details: Left a Tree, that loads dynamically content via AJAX when needed. (Click on the plus Icon selects the Item - not god). The Content of the right area is changing. A general overview, a RemoteTabl

Re: [qooxdoo-devel] How to cancel other Events

2007-06-19 Thread C.Bieser
Is there no other way as to add a condition to all the other event listener functions or to disable the other elements that could dispatch an event? is there no possibility to say "chancelDisappear"? -- View this message in context: http://www.nabble.com/How-to-cancel-other-Events-tf3946840.html

[qooxdoo-devel] How to cancel other Events

2007-06-19 Thread C.Bieser
Hello, I have a form which sets a dirty-Flag if something was changed. How can I cancel events from the TreeView or from the Menu/TooolBar if they try to unload the form. I try to catch the "beforeDisapear" but I don't know how to cancel the other events and keep the form visible. Can You help me

[qooxdoo-devel] Drivin crazy with error messages

2007-06-18 Thread C.Bieser
Is there no way to print helpful error messages? I just want to load a self defined class called "pim.ui.component.Editform" within an event listener. But the following error message is the only thing I get. [Exception... "'Error: Invalid Widget: [object pim.ui.component.Editform]' when calling

Re: [qooxdoo-devel] Error: configuration key "extend" is not allowed! [v0.7]

2007-06-13 Thread C.Bieser
It is very mysterious. @home it has done without defining the type. Here in the office it has definitely first done after adding the type, now it works without. But now I have new Problems... :-( Thanks for Your help! Christian -- View this message in context: http://www.nabble.com/Error%3A-c

[qooxdoo-devel] "this" within EventListener and IE [Remote Table Model; setting Columns] [v0.7]

2007-06-13 Thread C.Bieser
Hello, in my Application I'm using a Table with a Remote Table Model. It works fine. I'm trying to add a Remote Column Model. This works also fine - in FireFox, Opera, Safari but not in IE. And this is my Problem. Code: - Gui.js [pim.Gui] [...] tableModel = new pim.ui.table.model.Remote(); t

Re: [qooxdoo-devel] Error: configuration key "extend" is not allowed! [v0.7]

2007-06-12 Thread C.Bieser
After changing Remote.js (qx.ui.table.model.Remote) from --- qx.Class.define("qx.ui.table.model.Remote", { extend : qx.ui.table.model.Abstract, [...] }); --- to --- qx.Class.define("qx.ui.table.model.Remote", { type : "abstract", extend : qx.ui.table.model.Abstract, [...] }); ---

[qooxdoo-devel] Error: configuration key "extend" is not allowed! [v0.7]

2007-06-12 Thread C.Bieser
I've just migrated on old File to v0.7 and now I get the following Error. I han't fount anything in the Archiv the helps me... Do You have an Idea? Thanks, Christian - The configuration key "extend" in class "pim.remoteTableModel" is not allowed! qx.Class.define("pim.remoteTableModel", {

[qooxdoo-devel] this for the Class within EventListerner-Function

2007-06-12 Thread C.Bieser
Hello, i know that the third parameter for addEventListener is the Object that represents this within the surrounding Function. In my case, the eventListener "complete" for AJAX is calling a Function to generate children in the Tree. For this I have a Function "requestTreeChildren". Within "requ

Re: [qooxdoo-devel] XML RPC >> ZendFramework

2007-06-11 Thread C.Bieser
I'll use Ajax with JSON to communicate with the ZF Controller in the backend. Not safe but it will work until I've time to fix this. Derrell.Lipman wrote: > > Ok. I'm not quite sure how you're going to do that. There's no > existing code that specifically talks to ZF. If you're writing a > q

Re: [qooxdoo-devel] XML RPC >> ZendFramework

2007-06-10 Thread C.Bieser
Seems you've misunderstood me. I'm writing a Application and I want to connect QooXdoo and ZF. But I'm not gonna write a RPC-Class for this. I just haven't enough time for this. The Application i'm writing, a Product-Information-Management-System, is big enough for that little time I have, unfortu

Re: [qooxdoo-devel] XML RPC >> ZendFramework

2007-06-10 Thread C.Bieser
I know that there is a PHP PPC Backend for QooXdoo. And i know for my Diploma Thesis Application I've to write a bridge on my own to combine QooXdoo and ZF to get a good working and maintainable MVC2-Application. But as the ZendFramework has a RPC Server Technology based on standards wouldn't it

[qooxdoo-devel] XML RPC >> ZendFramework

2007-06-10 Thread C.Bieser
Hello, are there plans to add a XML RPC Object for use with e.g. the ZendFramework in the backend? Yours Christian -- View this message in context: http://www.nabble.com/XML-RPC-%3E%3E-ZendFramework-tf3898446.html#a11051556 Sent from the qooxdoo-devel mailing list archive at Nabble.com.

[qooxdoo-devel] Remote Columns in RemoteTableModel? (v0.6.6)

2007-06-04 Thread C.Bieser
Hello together, how is it possible to set a complete Column Model via RemoteTableModel, including visibility, sort ability and width of each column? I've tried to call a function while _loadRowCount but then the result is empty: no error, no table model. Any Ideas? Thank You, Christian Bieser

Re: [qooxdoo-devel] User definded IDs for TableRows? (in v0.6.6)

2007-06-01 Thread C.Bieser
Hi Nick, Nick Glencross-2 wrote: > > > Similarly for models which use hashes, such as the RemoteTableModel, you > can store values with keys that the table isn't aware of. > Can You give me an example how the RemoteTableModel works in v0.6.6? -- View this message in context: http://www.n

[qooxdoo-devel] User definded IDs for TableRows? (in v0.6.6)

2007-06-01 Thread C.Bieser
Hello, I'm getting the data for my Table via AJAX/Json. Within the data, I have an ID-Field called "pid". Pid is not from 0 to n, it is "1", "4", "5", "8", "20" and so on. I need the Pid for the rows and i don't want to hide a column. Is it possible a) to set UserData or b) to set the RowI

Re: [qooxdoo-devel] Themes an Icons in v0.6.6

2007-05-31 Thread C.Bieser
Thank You Alex, it works! Now I have the following: - qx.Proto.initialize = function(e) { [...] qx.manager.object.ColorManager.getInstance().setColorTheme(new qx.theme.color.WindowsRoyale); qx.manager.object.ImageManager.getInstance().setIconTheme(new qx.theme.icon.VistaInspirate); }

[qooxdoo-devel] Themes an Icons in v0.6.6

2007-05-31 Thread C.Bieser
Hello, I want to set the default theme and icon set for my application but nothing I've found here works. For example: - qx.Proto.initialize = function(e) { [...] qx.manager.object.AppearanceManager.getInstance().setAppearanceTheme( qx.theme.color.WindowsRoyale ) }; - Has anyone an ide