Re: [qooxdoo-devel] issue after changing font size

2012-01-30 Thread Martin Wittemann
Hey, > What if the initial values is computed based on the max of childs widget > height. And how could we find that out? The hight can only be read if the widget is in the DOM and as the dimensions might change depending on its content. So we would need to render every data set which would tack

Re: [qooxdoo-devel] questions about qx.bom.AnimationJS ...

2012-01-30 Thread Martin Wittemann
Hey, > What I liked in the "deprecated api" - let's call it that way :) - was the > internal animation queue. Notice that I actually don't know if a single > setInterval() is practically that more efficient compared to multiple > setInterval() functions. To be honest, I don't know if thats the bet

[qooxdoo-devel] [SOLVED] how to send parameter to a windows

2012-01-30 Thread matteomasina
Hi thank you to all of you for your help. I solved with the solution of passing the value in the constructor in the decalration field, like you last answer. Thank you a lot for everything. Best regard. Matteo Masina -- View this message in context: http://qooxdoo.678.n2.nabble.com/how-to-send

Re: [qooxdoo-devel] Questions about Rpc(php)!!!

2012-01-30 Thread Derrell Lipman
On Mon, Jan 30, 2012 at 20:28, linucos wrote: > Hi Derrell, >You wirte RpcPhp , right ? Yes, I wrote the original. Christian Boulanger then did a substantial amount of improvement to it. > I finished reading the code of RpcPhp and > learn a lot. > "If the server sent back a scaler, t

Re: [qooxdoo-devel] Questions about Rpc(php)!!!

2012-01-30 Thread linucos
Hi Derrell, You wirte RpcPhp , right ?I finished reading the code of RpcPhp and learn a lot. "If the server sent back a scaler, then result will be a scaler. If it sent back an array, result will be an array. If it sent back a map, result will be a map." I got it! Thanks a lot! -- Vie

Re: [qooxdoo-devel] How to force list selection to first item?

2012-01-30 Thread Simon White
Hi I found a way this can be done: this.list.getSelection().push(this.list.getModel().getItem(0)) Simon On 30/01/2012 4:43 PM, Derrell Lipman wrote: > On Mon, Jan 30, 2012 at 16:16, Simon White > > wrote: > > Hi > > The virtual list does not hav

Re: [qooxdoo-devel] How to force list selection to first item?

2012-01-30 Thread Derrell Lipman
On Mon, Jan 30, 2012 at 16:16, Simon White wrote: > Hi > > The virtual list does not have a method call "getChildren()" Sorry. Wrong list class. I only know the qx.ui.form.List(). Derrell -- Try before you buy = See our

Re: [qooxdoo-devel] How to force list selection to first item?

2012-01-30 Thread Simon White
Hi The virtual list does not have a method call "getChildren()" Simon On 30/01/2012 3:44 PM, Derrell Lipman wrote: > On Mon, Jan 30, 2012 at 15:40, Simon White > > wrote: > > Hi > > I have a virtual list bound to a store and when the store retrie

Re: [qooxdoo-devel] How to force list selection to first item?

2012-01-30 Thread Derrell Lipman
On Mon, Jan 30, 2012 at 15:40, Simon White wrote: > Hi > > I have a virtual list bound to a store and when the store retrieves the > data my list is populated but no item is actually selected in the list > until the user selects an item. I would like to force the list to > automatically selected

[qooxdoo-devel] How to force list selection to first item?

2012-01-30 Thread Simon White
Hi I have a virtual list bound to a store and when the store retrieves the data my list is populated but no item is actually selected in the list until the user selects an item. I would like to force the list to automatically selected the first item when the data is loaded. So I created a li

Re: [qooxdoo-devel] questions about qx.bom.AnimationJS ...

2012-01-30 Thread benco
MartinWittemann wrote > > Yes in deed: http://bugzilla.qooxdoo.org/show_bug.cgi?id=6075 > I don't know when that will happen because I first want to test all the > new stuff and make sure it's doing what it's supposed to do. ;) > What I liked in the "deprecated api" - let's call it that way :)

[qooxdoo-devel] Best Practice Recommendation when JSON Store returns no Data.

2012-01-30 Thread Simon White
Hi I am using the Virtual lists with JSON stores and I wanted to know if there is a best practice in regards to letting the user know that no data was received in the store. Currently my list is just blank but I am wondering whether I should just manually add a list item saying "No data Found

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread thron7
On 01/30/2012 06:04 PM, matteomasina wrote: > Thank you you're right ! > > But there is a way to initialize the property to use the value when the > window open ? > > I need to use Mia_proprieta to initialize some fields into the window. > > If I use initMia_proprieta it's ok ? or which is the ri

Re: [qooxdoo-devel] issue after changing font size

2012-01-30 Thread Benjamin Dreux
Hi What if the initial values is computed based on the max of childs widget height. If all child ares widget it should be easy no ? To keep it simple, we could have two default child (the label and an icon), isn't it ? Regards Le 27 janvier 2012 05:52, Martin Wittemann a écrit : > Hey, >> I fou

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread matteomasina
Thank you you're right ! But there is a way to initialize the property to use the value when the window open ? I need to use Mia_proprieta to initialize some fields into the window. If I use initMia_proprieta it's ok ? or which is the right way to initialize a property ? thank's again -- View

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread matteomasina
Thank you a lot, that's is good, but when I print my property with getMia_prorieta() I get 0 like the init value and not the value I've set with setMia_proprieta(22) the value in this case sould be 22. I can't understand sorry -- View this message in context: http://qooxdoo.678.n2.nabble.com/ho

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread slah
Hello, every thing looks ok, only the call to setter/getter. The first letter should be in capital format so instead of getmia_proprieta() use getMia_prorieta() and setMia_proprieta(12); //12 for example. Hope this works matteomasina wrote > > ok I try to explain better with one example : >

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread Derrell Lipman
On Mon, Jan 30, 2012 at 09:53, matteomasina wrote: > ok I try to explain better with one example : > > test.js > > qx.Class.define("esempio.test", >{ >extend : qx.ui.window.Window, >properties : { >mia_proprieta: { init : 0, check: "Integer" } >}, > ... > > Ap

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread matteomasina
ok I try to explain better with one example : test.js qx.Class.define("esempio.test", { extend : qx.ui.window.Window, properties : { mia_proprieta: { init : 0, check: "Integer" } }, construct : function() { this.base(arguments, "Nuova p

Re: [qooxdoo-devel] Call for an opinion

2012-01-30 Thread Burak Arslan
On 01/30/12 15:01, Stefan Andersson wrote: > JsQt is a promising approach. The problem with support of extended > widgets seems not to be limited. Additionally, I guess it seems > dormant...is it? Nov 19, 2009 > What > signals do that

Re: [qooxdoo-devel] Call for an opinion

2012-01-30 Thread thron7
On 01/30/2012 02:01 PM, Stefan Andersson wrote: T, are you going to bring forward a designer tool? or should I interpret your answer as a no? The roadmap is not finalized yet, but as far as I'm aware there is no such topic in the discussion. (Which is not so surprising, as there isn't even

Re: [qooxdoo-devel] Call for an opinion

2012-01-30 Thread thron7
On 01/30/2012 02:24 PM, Derrell Lipman wrote: On Mon, Jan 30, 2012 at 07:02, thron7 > wrote: Tell me one system from the 80ies that survived, let alone because of a GUI designer :-). The single most useful software tool ever built in the history

Re: [qooxdoo-devel] questions about qx.bom.AnimationJS ...

2012-01-30 Thread Martin Wittemann
Hey, I just noticed Martin's recent addition to the framework to handle CSS animations in a cross-browser way, what is awesome :) Thanks. :) I just wondered why qx.bom.AnimationJS is not based on qx.fx... Any plan to remove qx.fx from the framework in the long term ? Yes in deed: http://bugzilla.

Re: [qooxdoo-devel] Questions about Rpc(php)!!!

2012-01-30 Thread Derrell Lipman
On Mon, Jan 30, 2012 at 08:26, linucos wrote: > Hi, >Thanks your post. >The 'Result' is a array?or json ? The result member of the response contains the json-*decoded* result that was sent back by the RPC implementation at the server. If the server sent back a scaler, then result will b

Re: [qooxdoo-devel] Questions about Rpc(php)!!!

2012-01-30 Thread linucos
Hi, Thanks your post. The 'Result' is a array?or json ? -- View this message in context: http://qooxdoo.678.n2.nabble.com/Questions-about-Rpc-php-tp7236406p7236563.html Sent from the qooxdoo mailing list archive at Nabble.com. -

Re: [qooxdoo-devel] Call for an opinion

2012-01-30 Thread Derrell Lipman
On Mon, Jan 30, 2012 at 07:02, thron7 wrote: > ** > > Tell me one system from the 80ies that survived, let alone because of a > GUI designer :-). > The single most useful software tool ever built in the history of computing: emacs! :-) Derrell ---

Re: [qooxdoo-devel] How to send HUGE amount of data and get back a file?

2012-01-30 Thread slah
Hi, thank you very much, I'll go with option 1 (file url as result of the query). I was avoiding this option to avoid handling pdf: choose file name for the generated pdf, create it in fs, and then delete after a period of time, etc. Regards thron7-2 wrote > > On 01/30/2012 01:41 PM, slah wrot

Re: [qooxdoo-devel] Call for an opinion

2012-01-30 Thread Stefan Andersson
Michael: >I think, for small sites there is no need for a visual designer. >If you have a larger project, normally you create a standard how your >application/windows/forms should look. Why do you think JExt developed a designer? Apparently they do not seem to have the same opinion as you... A

Re: [qooxdoo-devel] How to send HUGE amount of data and get back a file?

2012-01-30 Thread thron7
On 01/30/2012 01:41 PM, slah wrote: > hello, > > when I download a pdf file from internet it's displayed in the browser > window (acrobat plugin I guess renders it). > > I'm using this qooxdoo code: > > __openPopup : function(pageURL, title,w,h) { > var left

Re: [qooxdoo-devel] How to send HUGE amount of data and get back a file?

2012-01-30 Thread slah
hello, when I download a pdf file from internet it's displayed in the browser window (acrobat plugin I guess renders it). I'm using this qooxdoo code: __openPopup : function(pageURL, title,w,h) { var left = (screen.width/2)-(w/2);

[qooxdoo-devel] questions about qx.bom.AnimationJS ...

2012-01-30 Thread benco
Hi guys, I just noticed Martin's recent addition to the framework to handle CSS animations in a cross-browser way, what is awesome :) I just wondered why qx.bom.AnimationJS is not based on qx.fx... Any plan to remove qx.fx from the framework in the long term ? Best Regards, Benoît. PS: I also

Re: [qooxdoo-devel] Questions about Rpc(php)!!!

2012-01-30 Thread thron7
On 01/30/2012 01:24 PM, linucos wrote: > Hi to All, > Rpc is a real good way to implement c/s application.When i use qx's > qx.io.remote.Ipc i got a few questions: > 1. Rpc is sent by Get or POST ? or other method ? Rpc class uses the POST request by default, unless it is a cross-domai

[qooxdoo-devel] Questions about Rpc(php)!!!

2012-01-30 Thread linucos
Hi to All, Rpc is a real good way to implement c/s application.When i use qx's qx.io.remote.Ipc i got a few questions: 1. Rpc is sent by Get or POST ? or other method ? 2. How can i process the result of Rpc return? Thanks. -- View this message in context: http://qooxdoo.678.n2.n

Re: [qooxdoo-devel] Call for an opinion

2012-01-30 Thread thron7
On 01/30/2012 11:14 AM, Stefan Andersson wrote: We have looked at extjs designer now and the diagrammer too. Amazing achievement by Sencha. Far ahead of qooxdoo in fast application development, usability and user friendliness. It is like comparing DataFlex, with the most useful OO concept, w

Re: [qooxdoo-devel] How to send HUGE amount of data and get back a file?

2012-01-30 Thread thron7
I guess it depends on the behaviour you have configured in your browser for application/pdf. What happens when you download some other PDF from the Internet? T. On 01/30/2012 11:14 AM, slah wrote: > Hello, > > thank you, I've added req.setMethod('POST') and it works. > > But the file still don'

Re: [qooxdoo-devel] Call for an opinion

2012-01-30 Thread Michael_
Hello, I think, for small sites there is no need for a visual designer. If you have a larger project, normally you create a standard how your application/windows/forms should look. In this case, writing a Gui + Generator, wich satisfied your needs for 100% is not so hard. We are'nt in the 1980. So

Re: [qooxdoo-devel] How to send HUGE amount of data and get back a file?

2012-01-30 Thread slah
Hello, thank you, I've added req.setMethod('POST') and it works. But the file still don't get displayed in the browser window and here's the header being received: Cache-Control:private Connection:Keep-Alive Content-Disposition:inline; filename="genereated_test.pdf" Content-Length:2875 Content-T

[qooxdoo-devel] Call for an opinion

2012-01-30 Thread Stefan Andersson
We have looked at extjs designer now and the diagrammer too. Amazing achievement by Sencha. Far ahead of qooxdoo in fast application development, usability and user friendliness. It is like comparing DataFlex, with the most useful OO concept, with other competing technologies in the 80'ies. Wh

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread thron7
Please turn your standalone app into a Playground sample [1] and post the (shortened) link, so that we can all look at the code. T. [1] http://playground.qooxdoo.org/ On 01/27/2012 05:02 PM, Matteo Masina wrote: Hi, I've made a small test application, this is a qooxdoo standalone app. I've

Re: [qooxdoo-devel] How to send HUGE amount of data and get back a file?

2012-01-30 Thread thron7
On 01/30/2012 01:43 AM, slah wrote: > Hi all of you, > > I've html data generated in qooxdoo. Now I want to send it to backend (php > script) to get back a pdf file. > > My questions: > > 1. What is the best way to call my php script and pass my html data as a > param of the request? I've tried:

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread thron7
On 01/30/2012 09:03 AM, matteomasina wrote: > Ok so : > > I have one class that extends the window class, > > from the main application I would like to set 2 properties : > > "db" and "object_need" > > these are two strings. You mean the values of those properties are strings?! > When the windo

[qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread Matteo Masina
Hi, I've made a small test application, this is a qooxdoo standalone app. I've one file Application.js that is the main file, in this file I've put just one button to open a new window. Everything works fine, my problem is to understand the way to pass some parameters to the windows that I'm g

Re: [qooxdoo-devel] how to send parameter to a windows

2012-01-30 Thread matteomasina
Ok so : I have one class that extends the window class, from the main application I would like to set 2 properties : "db" and "object_need" these are two strings. When the window charge, I want to call a query to charge some data into the fields of window. Everything works fine, the only prob