On Jan 13, 2007, at 2:21 AM, Rice Yeh wrote:

  Do you have an example about how to pass the namespace object? I use it like the following:

                <map:call function="xs.party.use">
                    <map:parameter name="flowpath" value="{0}"/>
                </map:call>

, but it does not work.

That should work if there is a function xs.party.use() at the global scope. E.g., something like:

        var xs = {};
        .
        .
        .
        xs.party = {};
        .
        .
        .
        xs.party.use =
                function() {
                        .
                        .
                };

What do you mean by "it does not work"?

cheers,
—ml—

Reply via email to