English 中文(简体)
parameter passing to a standalone qooxdoo application
原标题:

How can I pass parameters to a stand alone qooxdoo applicatoin?

Thanks in advance :)

update:

I was thinking of passing URL parameters; something like GET/POST params when an html FORM is submitted. Initially, "arguments" in standalone application caught my attention. I think Tobi has correctly answered me (thanks a bunch); but feel free to share your ideas!

问题回答

Have a look at qx.bom.History it allows you to access the part of the url after the # sign. With this you can allow remote control of your application via urls of the form

http://host/app#param1=x;param2=y

Coupled with running the qooxdoo app in a named window (html target) this works pretty well.

cheers tobi





相关问题
parameter passing to a standalone qooxdoo application

How can I pass parameters to a stand alone qooxdoo applicatoin? Thanks in advance :) update: I was thinking of passing URL parameters; something like GET/POST params when an html FORM is submitted. ...

parameter passing to a shared object function

i have a c-application which should load a shared object at runtime and call an arbitrary function of the shared object. The shared object was build by the user and gave me the signature of his ...

jQuery, how to call a function while passing a variable

I want to use jQuery s .get method to send an ajax call to the server. I am using this line: $.get("InfoRetrieve", { },addContent(data)); As you can see I want to call a function call addContent ...

Passing a value from child window to parent

Here is my scenario: i have a parent web page, in my javascript code I open a new window. This new window is a server-side aspx page. This child page needs to save some data in the database, and after ...

热门标签