Re: [qooxdoo-devel] Get version from Manifest file

2012-05-29 Thread jabraham
Done Bug 6463 - Cannot read "info" Map from Manifest.json Jacob -- View this message in context: http://qooxdoo.678.n2.nabble.com/Get-version-from-Manifest-file-tp7575632p7579689.html Sent from the qooxdoo mailing list archive at Nabble.com. ---

Re: [qooxdoo-devel] qx.ui.window.Window on mobile device not moveable by touch

2012-05-29 Thread Deisss
On mobile i totally agree, on tablet i totally disagree. tablet got more from computer, and people use them more as computer rather than a mobile device. Btw my app (original qooxdoo one upgraded until 1.6) got no device touch (of course, at that time there was only one qooxdoo with no touch), bu

Re: [qooxdoo-devel] Use cover/content flow with qooxdoo -> Resolved

2012-05-29 Thread Marcel Ruff
It still is not stable. I have now the idea it is related to the z-index. Sometimes, after reopening the qx window several times, in Firefox the pictures are not visible and than visible again. In Chrome the qx window remains gray. The coverflow uses z-index and qooxdoo probably as well. Who win

Re: [qooxdoo-devel] qx.ui.window.Window on mobile device not moveable by touch

2012-05-29 Thread Christopher Zündorf
At this time, most qx.Desktop widgets are not intended to be used on a touch device. I do not know, if a movable qx.ui.window.Window, does make much sense on a touch device. Mobile applications have other usability demands, than RIA apps. For example: the touch areas should be bigger, no mouse

Re: [qooxdoo-devel] qx.ui.window.Window on mobile device not moveable by touch

2012-05-29 Thread Deisss
Here is a basic example how to do it : You must extend window class to do it : qx.Class.define("myClass", { extend : qx.ui.window.Window, construct:function(title){ this.base(arguments, title); this.addListener("touchstart", this._onMoveMouseDown, this); this.addListener("touche

Re: [qooxdoo-devel] Auto sizing dock layout controls

2012-05-29 Thread deniska
That solves my problem. Many thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Auto-sizing-dock-layout-controls-tp7579382p7579422.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] Auto sizing dock layout controls

2012-05-29 Thread Derrell Lipman
On Tue, May 29, 2012 at 8:32 AM, deniska wrote: > I have a composite I need to add 2 composites to. One composite has fixed > height and I want it at the south edge. Second one should fill the rest of > the layout. I've tried using south and north edges, but I still have an > empty space in the m

[qooxdoo-devel] Auto sizing dock layout controls

2012-05-29 Thread deniska
I have a composite I need to add 2 composites to. One composite has fixed height and I want it at the south edge. Second one should fill the rest of the layout. I've tried using south and north edges, but I still have an empty space in the middle of the layout. Also tried to find example in Demo Br

Re: [qooxdoo-devel] Editable cells in treevirtual

2012-05-29 Thread deniska
I've checked the example out. In that particilar example they add data as array, which doesn't seem to work for a tree. I'm using SimpleTreeDataModel to fill the tree, and unfortunately it doesn't allow me adding multiple options for cell value. Also I have parent and children entries, so I somehow

Re: [qooxdoo-devel] How to send data to server

2012-05-29 Thread thron7
On 05/29/2012 11:26 AM, Pravin Arote wrote: > actually i have to send the complex object. Even "pravin" is also not getting > send to the server. Have you proof of that, like the packets from an inspecting proxy (Fiddler, CharlesProxy) or packet filter (Whireshark, ...)?! > Do i need backene

Re: [qooxdoo-devel] Regarding RPC calls

2012-05-29 Thread thron7
On 05/29/2012 07:02 AM, Pravin Arote wrote: > Hi, > > I am using RPC call in asp.net MVC framework. Following is my code > > var rpc = new qx.io.remote.Rpc( > "http://localhost/QooxDooMVC/Home/About";, > "QooxDooMVC.Controllers.HomeController"); > > var handler =

Re: [qooxdoo-devel] How to send data to server

2012-05-29 Thread Pravin Arote
actually i have to send the complex object. Even "pravin" is also not getting send to the server. Do i need backened server for asp.net MVC to achive this? -- View this message in context: http://qooxdoo.678.n2.nabble.com/How-to-send-data-to-server-tp7576288p7579293.html Sent from the qooxdoo mai

Re: [qooxdoo-devel] How to send data to server

2012-05-29 Thread thron7
Which kind of data do you want to transfer, other than the "Pravin" parameter? T. On 05/25/2012 11:41 AM, Pravin Arote wrote: > Hi, > > I want to send data to backend. My current code is > > var rpc = new qx.io.remote.Rpc( > "http://localhost:56791/Home/AddData";, >