I'm trying to change some options for the t5Components/Window component
but I cannot get the showEffect correct. I extended Window and override
the configure method:

    protected void configure(JSONObject options)
    {
        options.put("showEffect", "Element.show");
    }

What's generated though is:

new Window({..... "showEffect":"Element.show"});

which seems not to work. When I change it (by hand) to 

new Window({..... "showEffect":Element.show});

it is working. It seems that Window cannot handle the quotes that are
added by JSONObject.

Is this is a known issue?

Martijn Brinkers



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to