Re: [qooxdoo-devel] Drag & Drop for Buttons

2009-01-11 Thread Alexander Back
Hi, Mr. Hericus wrote: > Hi Alex, > > What I've done (and it's working well so far) is to create a > qx.ui.tabview.Button that inherits from the qx.ui.form.RadioButton. On > this button, I've overridden the _onMouseDown and _onMouseUp methods so > that it will handle normal clicks, as well as dr

Re: [qooxdoo-devel] Problem with qx.io.remote.Request

2009-01-11 Thread Alexander Back
Hi Alberto, Alberto Gimeno wrote: > And the RemoteTableModel example should be updated. Done :-) cheers, Alex -- Check out the new SourceForge.net Marketplace. It is the best place to buy or sell services for just abo

[qooxdoo-devel] Creating a desktop area with scrollbars

2009-01-11 Thread Dacquay, Eric
Hi, I've got an application where some windows can get relatively large and as a result are not completely shown on screen. I have placed the Desktop object inside a Scroll container and until recently, I was getting scroll bars when the window went outside the visible area. However, ever since I

Re: [qooxdoo-devel] Problem with qx.io.remote.Request

2009-01-11 Thread Alberto Gimeno
Ops! Thank you very much. I didn't understand the message. It remembers me the people who call the desk-help when the computer says "press any key to continue" and they can't fint the "any" key xD I think the keyword should be quoted: Error: Please initialize 'qx.io.remote.Request' objects using

[qooxdoo-devel] Scaling effect OK on widget in HBox?

2009-01-11 Thread Kenneth Tilton
I am trying to implement a poor man's fisheye toolbar, using Image widgets in an HBox and changing the image to a larger PNG on mouseover. Works but it's awfully herky-jerky. I tried using the code from the ToggleSize Showcase demo and I am getting an error on some null instance when I start th

Re: [qooxdoo-devel] Problem with qx.io.remote.Request

2009-01-11 Thread Stefan Volbers
Hi Alberto, welcome! Quite obvious one: take the error message literally! You need to write var req = new qx.io.remote.Request(url, "GET", "application/json"); ^^^ That's the mentioned new keyword; it isn't explicitly described in the docs as it is javascript standard. The 0.8/remote

[qooxdoo-devel] Problem with qx.io.remote.Request

2009-01-11 Thread Alberto Gimeno
Hi! I'm learning qooxdoo. I'm trying to use the RemoteTableModel example (http://qooxdoo.org/documentation/0.8/remote_table_model) But I get an error at this line var req = qx.io.remote.Request(url, "GET", "application/json"); I know that is that line because I put a debug() before and after. T