I can ask the same question again with a code example that is perhaps a
little easier to understand quickly. The code that follows attempts to
append one list to another. I'd like to know exactly what kind of Object I'm
getting here [apple1, [EMAIL PROTECTED], and how might I achieve the
desired result?

        <ww:set name="apples" value="{'apple1', 'apple2', 'apple2'}"/>
        <ww:set name="oranges" value="{'orange1', 'orange2'}"/>
        <ww:iterator value="#apples" >
                <ww:property value="#oranges.add([0])"/><br>
        </ww:iterator>
        <hr>
        <ww:iterator value="#oranges" >
                <ww:property/><br>
        </ww:iterator>

output:

true
true
true
-----------------
orange1
orange2
[apple1, [EMAIL PROTECTED]
[apple2, [EMAIL PROTECTED]
[apple2, [EMAIL PROTECTED]



-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
_______________________________________________
Opensymphony-webwork mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork

Reply via email to