Details
Description
getClientId() returns only a part of the generated id with multiple forms (using org.apache.tapestry.form.MultipleFormSupportFactory, see https://issues.apache.org/jira/browse/TAPESTRY-1274) in render phase if no submit was before.
I have 2 forms on a page and I'd like to generate the client ids into the HTML output. With org.apache.tapestry.form.MultipleFormSupportFactory the component ids are generated fine (with the form prefix) but getClientId skips that prefix, so it returns only "text" instead of "Form_0:text" or "Form_1:text". After submit one of the forms the getClientId returns correct values (in listener and render) in the submitted form, but the other one is still wrong.