Re: [qooxdoo-devel] How to write correct API JsDoc for "ignored"/"external" return type (qooxdoo 3.0)

2013-08-06 Thread thron7
You need to open a bug for this. The problem is that the Apiviewer cannot hyperlink types it doesn't know (the link in your screen shot is probably bogus). Which behavior would you want to see in this case (add to bug)? T. On 08/06/2013 04:48 PM, Peter Schneider wrote: Hi, I can not find[1

Re: [qooxdoo-devel] qx.io.request.Xhr() works with chrome but not firefox

2013-08-06 Thread thron7
That's probably a cross-domain issue ("localhost" != "127.0.0.1"). T. On 08/06/2013 05:23 PM, schraenko wrote: > Hi everybody, > > the following code works fine with Chrome but doesn't work with Firefox. The > serverside is a Django running in dev mode. I can also get the response when > I type t

[qooxdoo-devel] qx.io.request.Xhr() works with chrome but not firefox

2013-08-06 Thread schraenko
Hi everybody, the following code works fine with Chrome but doesn't work with Firefox. The serverside is a Django running in dev mode. I can also get the response when I type the url in the Firefox adress bar. Firebug tells me that the request is ok with a 200 code but the "success"-Listener is n

[qooxdoo-devel] How to write correct API JsDoc for "ignored"/"external" return type (qooxdoo 3.0)

2013-08-06 Thread Peter Schneider
Hi, I can not find[1] any documentation on how to correctly specify return types for "external" / "ignored" types... When I use an external Library (in my case googles Map API) I have to inform the generator about the usage of those identifiers [ @ignore(...) ]. But how to tell the generator not

Re: [qooxdoo-devel] Custom base URL configuration for whole application

2013-08-06 Thread thron7
On 08/05/2013 11:47 AM, Alper Ortac (aortac) wrote: > Hello, > > As far as I can see, that settings is to configure the file path, not the uri > which will be accessed in the browser, which is what I need to configure. That's not right, both uris/script and uris/resource take URIs, so you can e

Re: [qooxdoo-devel] Using model data in tree to create context menu etc.

2013-08-06 Thread Daniel Wagner
Hi Fredrik, On 03.08.2013 21:57, walle wrote: > So, I have found a solution to the problem regarding different context menues > on different types of items. > > Now I only use one contextmenu, that is built when the contextmenu event is > emitted on the tree item. Then I have access to the model d

Re: [qooxdoo-devel] Virtual Tree Node dblclick event

2013-08-06 Thread Mustafa Sak
Hi, please take a look at this small example: http://tinyurl.com/q2o7srm In your case delegation will be the place you need to. "bindItem" will be called every time a tree item will be bound to a model and "onPool" will be called every time a tree item will be disappeared. So just add and remov

Re: [qooxdoo-devel] Virtual Tree Node dblclick event

2013-08-06 Thread smiler
Hi Mustafa, currently my Nodes have a custom property named "id" which i can get via: var selectedNodes = this.__Tree.getSelection(); var scriptid = selectedNodes.getItem(0).get("id"); all I want is a way to trigger an event when double clicking a treenode which extracts the id. When doing that