Is there a way to submit the contentList back to the server? in other words, 
can i send a list from jsp to struts? I tried the following but it doesn't work:

    <s:form action="do-translate-document" cssClass="formtable"
        method="POST">
        <s:iterator value="contentList">
            <tr><td>
            <p >
                <s:property value="expression" />
            </p>
            <s:hidden name="id"/>
            <textarea name="contentList.content.translations.translation"> 
</textarea>
            <s:iterator value="translations">
                <p class="translation"><s:property value="translation" /></p>
            </s:iterator>
            </td></tr>
        </s:iterator>
        <s:submit />
    </s:form>


Reply via email to