I'm at a loss.
I have a string list that gets sent to the tml file.
public List<String> getMessages() {
return stringMap.get( concession );
}
My markup is below.
<t:loop source="concessions" value="concession">
<t:loop source="messages" value="message">
${message}
</t:loop>
<t:yui.YuiComboBox options="messages" />
</div>
</t:loop>
The loop for message that iterates through the String list will iterate
through the proper strings. However, when the same list is passed into
another component, it will only send the default String list (as
concession is read as null). If this same component is used outside a
loop, it works properly. I couldn't find anything specific to this sort
of components-in-loops weirdness. Any help?
Amy
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org