Hi,

the id of a form element changes after the Zone which contains the form is updated. (id before: loginForm, id after loginForm_13871283787...) I know, this is done by tapestry to prevent unwanted id clashes (see: What's that weird number in the middle of the client ids after a Zone is updated? http://tapestry.apache.org/ajax-components-faq.html)

But there is no solution given in how to deal with this random ids if your javascript code depends on the id. Some people have suggested to provide both id and t:id by yourself to prevent tapestry from changing the ids but for me it does not work.

here is my code:

<t:Dialog t:clientId="loginDialog" t:title="${shortTitle}" >
<t:zone t:id="loginZone" id="loginZone">
<form t:type="Form" t:id="loginForm" id="loginForm" class="loginForm" title="${res.Login}" t:zone="loginZone">
<table  align="center">
<tr>
<td colspan="2"><t:errors /></td>
</tr>
                                        .... some other form elements .....
</table>
</form>
</t:zone>
</t:Dialog>

$('#oginForm').submit(); // this does not work anymore if the zone has got updated

There is another suggestion to use setSubmittingElement before submit the form, but I haven't find a jquery method to do this (and I don't really understand why I have to do this)

I'm using tapestry 5.3 and tapestry5-jquery-3.0.0-20111122.140306-63.

Thanks for your help!!
Andreas




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to