views:

49

answers:

1

Hi,

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!

+2  A: 

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

Tobi Oetiker

related questions