[qooxdoo-devel] Is rpc.callAsync changing my posted data?

2009-01-13 Thread Martin
But what next thing what happens to me is, that if I use RPC, and want to send data like. var sess=new Object(); sess["type"]="string"; sess["value"]=(server_session!="")?server_session+:"unknown"; note: sess["type"]="string"; .callAsync(function(),"rpcfunction",sess); In firebug I see thos

Re: [qooxdoo-devel] qooxdoo 8.1 - xxx is not constructor

2009-01-13 Thread Martin
Hi Alex, this happened exactly when backend (PHP) returned "Services require JSON-RPC" (dunno why this happened when normaly this doesn't happen :), but now it seems to be OK again ... I'll start new thread for another problem. Thanks for help, Martin > Hi Martin, > > Martin wrote: > > To thank

[qooxdoo-devel] File Upload issues in IE

2009-01-13 Thread Dacquay, Eric
Hi, I'm working with the UploadWidget from the contrib section but I am having a few issues with it on IE. The first of these is that depending on what happens in the application, the user can't select a file a second time. The file selection dialog box comes up but the filename does not show up

[qooxdoo-devel] animation at qx.ui.window

2009-01-13 Thread Marco Vecchi
Hello everyone, You can assign a style animation "grow" at a "qx.ui.window" at event click of mouse at menuButton? _ Drag n’ drop—Get easy photo sharing with Windows Live™ Photos. http://www.microsoft.com/windows/windowslive/phot

Re: [qooxdoo-devel] Use of qx.ui.popup.Popup.placeTo(Element|Widget)

2009-01-13 Thread thron7
Philipp, take a look at the ui/Placement demo (http://demo.qooxdoo.org/0.8.1/demobrowser/index.html#ui~Placement.html). If that doesn't answer your questions, get back to the list. Thomas Philipp Gruber wrote: > Hello everyone, > > I'm trying to use qx.ui.popup.Popup for a drop down with searc

Re: [qooxdoo-devel] Problems integrating contribution

2009-01-13 Thread thron7
> "libraries" : > { > "library" : > [ > { > "manifest" : "contrib://UploadWidget/trunk/Manifest.json" > }, > { > "manifest" : "contrib://SkeletonApplication/trunk/Manifest.json" > } > ] > } > This is the correct answer.

Re: [qooxdoo-devel] Qooxdoo & JSon - How to create "QX" object from JSon ?

2009-01-13 Thread Roman Schmid
I wrote a simple Mixin to "serialize" object properties to an object or to json. One could extend this to make it work the other direction as well :) It isn't a true object serialization, since it only considers properties of objects. However this is sufficent for me, since i model my data classes

Re: [qooxdoo-devel] 0.7.4: Scrollbars do not appear on tables if using a larger than default font size (FF3)

2009-01-13 Thread thron7
Filed as a bug: http://bugzilla.qooxdoo.org/show_bug.cgi?id=1837 Thanks, Thomas Bryan Coutch wrote: > Browser: FF 3.0.5 > > > > Steps to reproduce: > > 1) Navigate to http://demo.qooxdoo.org/0.7.4/demobrowser/ > > 2) Use CTRL + "+" (or CTRL + mouse wheel up) to increase font size >

[qooxdoo-devel] Use of qx.ui.popup.Popup.placeTo(Element|Widget)

2009-01-13 Thread Philipp Gruber
Hello everyone, I'm trying to use qx.ui.popup.Popup for a drop down with search results under a text field. Unfortunately I can't figure out how to use the PlaceTo$something functions and the documentation is very minimalistic. --Code snippet:--

Re: [qooxdoo-devel] Qooxdoo & JSon - How to create "QX" object from JSon ?

2009-01-13 Thread Jean-Baptiste BRIAUD -- Novlog
On 12 Jan 2009, at 18:03, Rudriko wrote: > > Hello, > > I'm currently trying to use a JSon object in order to save a qx > "Label" > object in MySQL db. > And then i'd like to "restore" this label. > Why would you like to save a graphical object in a relational database ? Instead, you could have

Re: [qooxdoo-devel] Qooxdoo & JSon - How to create "QX" object from JSon ?

2009-01-13 Thread thron7
Rudriko wrote: > Hello, > > I'm currently trying to use a JSon object in order to save a qx "Label" > object in MySQL db. > And then i'd like to "restore" this label. > > This is an example: > > My browser do send this JSon to MySQL through request and my php function > (...) > var serialize = ob

Re: [qooxdoo-devel] Catch "ENTER" key event of a textfield

2009-01-13 Thread Sebastian Fastner
Cool, thanks. Alexander Back schrieb: > Hi Sebastian, > > Sebastian Fastner wrote: >> Hello, >> >> how can I catch an "ENTER" key event a qx.ui.form.TextField is >> (hopefully) fireing? > > --snip-- > textField.addListener("keypress", function(e){ >if (e.getKeyIdentifier().toLowerCase() ==

Re: [qooxdoo-devel] Problems integrating contribution

2009-01-13 Thread Roman Schmid
Hi. It should say: - "libraries" : { "library" : [ { "manifest" : "contrib://UploadWidget/trunk/Manifest.json" }, { "manifest" : "contrib://SkeletonApplication/trunk/Manifest.json" } ] } - Sorry if i contrib

Re: [qooxdoo-devel] Catch "ENTER" key event of a textfield

2009-01-13 Thread Alexander Back
Hi Sebastian, Sebastian Fastner wrote: > Hello, > > how can I catch an "ENTER" key event a qx.ui.form.TextField is > (hopefully) fireing? --snip-- textField.addListener("keypress", function(e){ if (e.getKeyIdentifier().toLowerCase() == "enter") { // more code to come } }, textF

Re: [qooxdoo-devel] Common Dialog Mixin for 0.8?

2009-01-13 Thread thron7
Roman Schmid wrote: > Dear Community > > I stumbled upon this nice snippet/mixin that provides common modal > dialogs to the user: > http://qooxdoo.org/documentation/0.7/snippets/asynchronous_user_interaction?s=dialog > > Sadly, this was developed for v0.7 and after trying to get it to run in > 0

Re: [qooxdoo-devel] Problems integrating contribution

2009-01-13 Thread Alexander Back
Hi Christoph, Christoph Schwentker wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > This is the output I see on the console (I'm using Ubuntu 8.1) : > > INITIALIZING: CUSTOM > ==

Re: [qooxdoo-devel] Problems integrating contribution

2009-01-13 Thread Christoph Schwentker
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, First I found my fault: The part jobs was commented out. So I removed it and then I get the following messages when I run ./generate.py source-all But it is not still working, I don't see anything from the UploadWidget I'm a bit confused now.. Th

[qooxdoo-devel] Catch "ENTER" key event of a textfield

2009-01-13 Thread Sebastian Fastner
Hello, how can I catch an "ENTER" key event a qx.ui.form.TextField is (hopefully) fireing? Thanks a lot, Sebastian -- Dipl.-Inf. (FH) Sebastian Fastner Am Eselsweg 62a, 55128 Mainz -- This SF.net email is sponsored b

Re: [qooxdoo-devel] Qooxdoo not working on Fedora 10

2009-01-13 Thread Fabian Jakobs
Deepak Mishra schrieb: > Hi all, > I noticed that correcting the "-" solved the problem for jonathan. But > I have been working on a qooxdoo project named "charge-mix" and have > not faced simillar problems. Am I missing out on something ? This depends what you define as project name. It is perfe

Re: [qooxdoo-devel] Qooxdoo not working on Fedora 10

2009-01-13 Thread Deepak Mishra
Hi all, I noticed that correcting the "-" solved the problem for jonathan. But I have been working on a qooxdoo project named "charge-mix" and have not faced simillar problems. Am I missing out on something ? xask.linus was here 2009/1/12 Fabian Jakobs > Hi Jonathan, > > the problem with your s

Re: [qooxdoo-devel] Uppercase on qx apps

2009-01-13 Thread thron7
Juan Matias Granda wrote: > Hi, i have a qooxdoo app, and i want all inputs, with uppercase but i > don't want to do this object by object, is posibble do this in one > time?. > My guess would be you need a class that extends qx.ui.form.TextField. In the constructor of this class you call th

Re: [qooxdoo-devel] How to insert text at cursor position inside a TextField?

2009-01-13 Thread thron7
Jan, don't despair but a reply to your question is in the making ... bear with us. Thomas Jenec wrote: > Hi everybody, > I need to insert some text at cursor position inside of a TextField. So I > need to get a last cursor position inside a TextField. How? > Thanks for help, >Jan >

Re: [qooxdoo-devel] Problems integrating contribution

2009-01-13 Thread Alexander Back
Hi Christoph, Christoph Schwentker wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi, > > I tried to integrate the UploadWidget in my Application. > I modified the config.json file and added the path: > But when I try to compile my Application, I get the error:; Unknown > class ref

Re: [qooxdoo-devel] Problems integrating contribution

2009-01-13 Thread Roman Schmid
Eep.. Sorry, That was wrong. Should be more like this: "libraries" : { "library" : [ { "manifest" : "contrib://UploadWidget/trunk/Manifest.json" }, { "manifest" : "contrib://SkeletonApplication/trunk/Manifest.json" } ]

Re: [qooxdoo-devel] Problems integrating contribution

2009-01-13 Thread Roman Schmid
Hi Christoph Did you add that to the "jobs" section of your config? Other than that, i think you'll have to add each contrib seperately. Eg. "libraries" : { "library" : [ { "manifest" : "contrib://SkeletonApplication/trunk/Manifest.json" } ],

Re: [qooxdoo-devel] Light weight controls

2009-01-13 Thread Fabian Jakobs
Jim Hunter schrieb: > I think you have me on the right track. I just did some timing tests > and creating these 'virtual' controls is much faster and leaves no > JavaScript memory footprint behind. There was a slight change to the > sample you sent, I can not do label.getElement() as this does n

Re: [qooxdoo-devel] No file chooser in qooxdoo?

2009-01-13 Thread Christoph Schwentker
Hi Alexander, thx for your help. I will try it today. Hope that helps cheers, Christoph 2009/1/12 Alexander Back > Hi Christoph, > > Christoph Schwentker wrote: > > -BEGIN PGP SIGNED MESSAGE- > > Hash: SHA1 > > > > Hi, > > I'm new to qooxdoo. > Welcome to the project! > > > I

[qooxdoo-devel] Problems integrating contribution

2009-01-13 Thread Christoph Schwentker
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I tried to integrate the UploadWidget in my Application. I modified the config.json file and added the path: But when I try to compile my Application, I get the error:; Unknown class reference. So where is the misstake, that the contrib is not inc

Re: [qooxdoo-devel] Jump Start

2009-01-13 Thread lycovian
Having a Homer Simpson moment ... Doh! You are so correct. I didn't realize that the source for this great little app was under /application/feedreader/source/class/feedreader. Studying it diligently now. Thanks. Mike Jonathan Rass wrote: > > Hi Mike! > > Did you take a look at our Feed Re