Re: [qooxdoo-devel] A 'partial' modal window

2009-02-16 Thread Jim Hunter
Issue resolved. The modal part does not work unless the window is added to the document root. Once I moved it, everything works like it should. The API documentation states the the window container must have either a Canvas or Basic layout, yet the container that didn't work was a Composite contain

[qooxdoo-devel] A 'partial' modal window

2009-02-16 Thread Jim Hunter
I have just noticed that I have a 'partially' modal window. It was modal earlier, don't know what version, but now it has some strange behavior. The window stays on top but you are allowed to click things behind the window and the clicks execute as if the window was not there. I thought it might be

Re: [qooxdoo-devel] Migration Problem with legacy TreeVirtual

2009-02-16 Thread mshillin
Helder Magalhães wrote: > > > This seems tightly related with bug 776 [1]... > > Hope this helps, > Helder Magalhães > > [1] http://bugzilla.qooxdoo.org/show_bug.cgi?id=776 > Thanks. Does anyone know if patches to .0.7.x are being rolled forward into qx.legacy in .8.x ? Thanks again. M

Re: [qooxdoo-devel] Migration Problem with legacy TreeVirtual

2009-02-16 Thread Helder Magalhães
mshillin wrote: > > Looks like some Table changes were merged from 0.7.x but TreeVirtual > changes were not. The TreeVirtual.js fix for this error was made in > revision 11066 in the legacy_0_7_x branch. > This seems tightly related with bug 776 [1]... Hope this helps, Helder Magalhães [1]

[qooxdoo-devel] Migration Problem with legacy TreeVirtual

2009-02-16 Thread mshillin
Looks like there is an old Treevirtual bug in 0.8.1. Looks like some Table changes were merged from 0.7.x but TreeVirtual changes were not. The TreeVirtual.js fix for this error was made in revision 11066 in the legacy_0_7_x branch. Specifically, qx.legacy.ui.treevirtual.TreeVirtual is still ca

Re: [qooxdoo-devel] 0.8.1 Themes migration problem

2009-02-16 Thread mshillin
thron7-2 wrote: > >> My custom theme starts with the following >> >> >> qx.legacy.Theme.define("my.ui.theme.MYTheme", >> >> >> If I change this to >> >> qx.Theme.define("my.ui.theme.MYTheme", >> >> I get a clean build > > Mh, that's strange... > Strange that it will not compile or strange tha

Re: [qooxdoo-devel] Bug in qx.legacy/ui/form/TextField.js

2009-02-16 Thread Christian Schmidt
Hi Fritz, yes, that is a mistake, I have changed it in trunk (r17870). Thank you again for your hints. :-) Cheers, Chris Fritz Zaucker schrieb: > Is it possible, that in > >qx.legacy/ui/form/TextField.js > > all calls to > > qx.util.Validation.isValidString() > > should be replaced with

[qooxdoo-devel] Bug in qx.legacy/ui/form/TextField.js

2009-02-16 Thread Fritz Zaucker
Is it possible, that in qx.legacy/ui/form/TextField.js all calls to qx.util.Validation.isValidString() should be replaced with qx.legacy.util.Validation.isValidString() ? Cheers, Fritz -- Oetiker+Partner AG tel: +41 62 775 9903 (direct) Fritz Zaucker

Re: [qooxdoo-devel] Bug in demobrowser/#table~Table_Cell_Editor.html ?

2009-02-16 Thread Christian Schmidt
Hi Fritz, thanks for the hint, I have changed it in trunk r(17861). Cheers, Chris Fritz Zaucker schrieb: > Hi, > > I believe the if statement below > >propertyEditor.getTableModel().addListener( >"dataChanged", >function(event) >{ >if ( ! event instanceof

Re: [qooxdoo-devel] Oxygen Icons Source?

2009-02-16 Thread Matthew Gregory
Thanks! You have no idea how long I spent looking for them! Sebastian Werner wrote: > Hi Matt, > > you can check them out from SVN directly from KDE: > http://websvn.kde.org/trunk/KDE/kdebase/runtime/pics/oxygen/ > > Cheers, > Sebastian > > > Matthew Gregory schrieb: >> Hi All, >> Does anybody

Re: [qooxdoo-devel] How to make single table cell editable

2009-02-16 Thread Derrell Lipman
On Fri, Feb 13, 2009 at 8:09 AM, hfghhh hgfhgfh wrote: > is there a way to make a single table-cell editable? In the API-viewer I > only found methods for setting whole tables or whole table-columns editable. There's no method to call in Table to do that, but it's not difficult to add the funct

Re: [qooxdoo-devel] how to add dialog buttons to colorselector

2009-02-16 Thread Christian Schmidt
Hi Farid, I don't know which dialogbuttons do you add to the ColorSelector. But if I understood your problem correctly, then create a own class, which extends from the ColorSelector. The new class must override the "createChildControlImpl" method, to add your buttons. // example _createChildCo

[qooxdoo-devel] Bug in demobrowser/#table~Table_Cell_Editor.html ?

2009-02-16 Thread Fritz Zaucker
Hi, I believe the if statement below propertyEditor.getTableModel().addListener( "dataChanged", function(event) { if ( ! event instanceof qx.event.type.Data ) { return; } should be changed to if ( ! (event insta

Re: [qooxdoo-devel] Oxygen Icons Source?

2009-02-16 Thread Sebastian Werner
Hi Matt, you can check them out from SVN directly from KDE: http://websvn.kde.org/trunk/KDE/kdebase/runtime/pics/oxygen/ Cheers, Sebastian Matthew Gregory schrieb: > Hi All, > Does anybody know where I could grab the svg files for the Oxygen icon > set? I've managed to find a few via google bu

[qooxdoo-devel] Oxygen Icons Source?

2009-02-16 Thread Matthew Gregory
Hi All, Does anybody know where I could grab the svg files for the Oxygen icon set? I've managed to find a few via google but they all seem quite old and not a complete set. Thanks, Matt -- Open Source Business Confere

[qooxdoo-devel] how to add dialog buttons to colorselector

2009-02-16 Thread Farid Elyahyaoui
Hi people, Currently I added dialogbuttons to the colorselector by editing the ColorSelector.js file in the qooxdoo sources. This is not a good method because as soon as a new version of qooxdoo gets out I need to modify the source code again. I did this when upgrading from 0.7 to 0.8 and from 0.8

Re: [qooxdoo-devel] change content of a iframe

2009-02-16 Thread Christian Schmidt
Hi martin, did you also do this in your "create_iframe" function? var localiframe1 = new qx.ui.embed.Iframe(); this.iframe1=localiframe1; //you could also use: this.iframe1=new qx.ui.embed.Iframe(); localiframe1.setSource("http://www.gmx.de "); return localiframe1; Cheers, Ch

Re: [qooxdoo-devel] Global access to variable

2009-02-16 Thread Christian Schmidt
Hi Greken, you can define a member to access your tree, see the code below. Cheers, Chris // qx.Class.define("BasicSample", { extend : qx.application.Gui, members : { _tree : null, // Member for qx.ui.tree.Tree main : function() {

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread Florian Giesen
Hello Steffen, I had the same idea as Roman an tested your code on my local machine. I called the index.html with http://localhost/... (depending on your directory structure, you may need to update your config.json or move the files) and it worked fine. Please note, that AFAIK the content type "app

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread -Steffen-
Many Many thanks, that was the problem, now it works. -- View this message in context: http://www.nabble.com/Help-on-qx.io.remote.Request---I-am-lost%21-tp22032520p22036059.html Sent from the qooxdoo-devel mailing list archive at Nabble.com.

[qooxdoo-devel] Global access to variable

2009-02-16 Thread Greken
Hi I declare a tree in one function. Then I want to access that tree in another function to be able to add items to the tree. How can I access the created tree in the other function? I'm using qooxdoo v 0.7.1. /Greken -- View this message in context: http://www.nabble.com/Global-access-to-varia

Re: [qooxdoo-devel] How to make single table cell editable

2009-02-16 Thread Gaurav Jauhri
Sorry, what I wrote was wrong according to your needs. I am not too sure how to get this effect but I will try to give you some suggestions once I find something. Regards, Gaurav hfghhh hgfhgfh wrote: > Thanks for your reply Gaurav. > > Gaurav Jauhri wrote: > >> You can specify the column numb

Re: [qooxdoo-devel] change content of a iframe

2009-02-16 Thread Martin_GER
Thank for help, but it is not the solution. It always appears the error message -->> 'this.frame1' is Null or no object <<-- Could the problem be that I work with 2 files? -- View this message in context: http://n2.nabble.com/change-content-of-a-iframe-tp2333441p2334226.html Sent from the qoox

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread Roman Schmid
You get this error because you run your application from a "file://" URL, which is a different "domain" than localhost. I'd move the project to a directory in your webroot, then call it with http://localhost. eg. http://localhost/myqooxdooapp/source -Steffen- wrote: > I have activated crossDoma

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread -Steffen-
I have activated crossDomain because otherwise i get the following error even everything is on the same machine: 7458ms qx.io.remote.transport.XmlHttp[2h]: Failed with exception: [Exception... "Access to restricted URI denied" code: "1012" nsresult: "0x805303f4 (NS_ERROR_DOM_BAD_URI)" location: "

Re: [qooxdoo-devel] Large application with qooxdoo?

2009-02-16 Thread Ian Horst
I developed quite complex application around RADIUS, network management and helpdesk/support system using qooxdoo, full blown reporting including svg charting is on its way. Qooxdoo handles it more than good. Especially huge tables. Qooxdoo has neat OOP design environment, I haven't seen it in o

Re: [qooxdoo-devel] How to make single table cell editable

2009-02-16 Thread hfghhh hgfhgfh
Thanks for your reply Gaurav. Gaurav Jauhri wrote: > > You can specify the column number u wish to make editable, like this > ... > where i is the particilar column number of your table. > Ok, but I want make a particular cell of a column (NOT the whole column itself) editable. Otherwise I coul

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread Roman Schmid
Quick question: why did you enable "crossDomain" for your call? I guess this might cause problems in your case. Try this: --- snip --- var req = new qx.io.remote.Request( "http://localhost/qooxdoo/test.php";, "GET", "text/plain" ); req.setParameter("suche", "hallo ich komme von Applicati

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread -Steffen-
Ok so I am not completely out of line (thank god). My Problem ist still present. When I open the test.php in a browser I get an empty String "" (as intended). When called like this http://localhost/qooxdoo/test.php?suche="TEST"; i get the following: "\\\"TEST\\\"" -- View this message in context:

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread Roman Schmid
No, you're right. RPC is different from the remoteRequest. The RPC classes implement the JSON-RPC specification and your backend has to implement the same specification as well for successful communication. The good thing about using the RPC Classes and a RPC Backend is, that you don't have to worr

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread -Steffen-
Well, I thought those are two different methods of contacting the server. One is RPC and the second is qx.io.remoteRequest. Is this the same thing? I am confused (and not just a little bit). -- View this message in context: http://www.nabble.com/Help-on-qx.io.remote.Request---I-am-lost%21-tp2203

Re: [qooxdoo-devel] Asserts in build version?

2009-02-16 Thread Christian Schmidt
Hi Roman, you have to use "qx.core.Variant.isSet("qx.debug", "on")" to strip automatically the assert functions. The build process will then remove all if conditions with the "qx.debug" statement from the js-file. Cheers, Chris Roman Schmid schrieb: > Hello Developers > > I used asserts in n

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread Farid Elyahyaoui
You are correct: you dont' need it (like you nee oxygen). It is just supplied as a kind of "reference implementation" to get you started quickly. Certainly helped me. The drawback is of course that you don't learn what actually happens internally in the php files but for me that was no issue. If I

[qooxdoo-devel] Asserts in build version?

2009-02-16 Thread Roman Schmid
Hello Developers I used asserts in numerous places in my application. When I compile the release version, i get errors because the various assert functions are missing. Is there a way to automatically strip the assert functions from the build version? Or do i have to wrap them all in qx.core.Varia

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread -Steffen-
Thanks for the very quick replies. I allready experimented with the option text/plain but there is no change in behaviour. Can someone confirm that this is a working example on someones elses machine? Because I think that this might be a configuration issue. By the way I get the timeout event, s

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread Farid Elyahyaoui
I don't know what is wrong exactly with your setup. one tip though: the php backend on the qooxdoo download servers is pretty good. Have you tried using this one and adding your own functionality? This is how I did it and I got it working in very little time and didn't have to reinvent the wheel by

Re: [qooxdoo-devel] Help on qx.io.remote.Request - I am lost!

2009-02-16 Thread Jim Hunter
And if that doesn't work, don't provide a content type in your request (or make it 'text/plain'). It will be assumed to be text/plain and when it comes time to process the response, simply do an eval on it, this is what I do. I use text/plain for all my requests and I decide on the client side what

Re: [qooxdoo-devel] change content of a iframe

2009-02-16 Thread Farid Elyahyaoui
you need to add a member 'iframe1' first. this code should work: /* #asset(iframetest/*) */ qx.Class.define("iframetest.Application", { extend :