The same happens if I wrap another component around the form.

In this example "t5c/ContentBox" is nothing more than a component wrapping a table around it's body and including some CSS.

"somePageProperty" will not be updated with the ContentBox
component.


...
 <span t:type="t5c/ContentBox" title="boo">
    <form t:type="Form"
          t:autofocus="true"
          t:zone="resultZone">

        <tr>
            <td class="formFieldLabel" valign="top" align="right">
                <t:label for="searchTerm"/>
            </td>
            <td class="formField">
                <input t:type="TextField"
                       t:value="somePageProperty"
                       t:id="searchTerm"/>
            </td>
        </tr>
         <tr>
             <td class="formButtons" colspan="2">
                      <input t:type="submit"
                             t:clientId="Submit"
                             t:id="submitButton"
                             value="Submit"/>
             </td>
         </tr>
    </form>

</span>
....

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

Reply via email to