Do the JSF 2.0 f:ajax control work with the tomahawk ‘forceId = true’ attribute ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No. The reason is f:ajax depends on clientId structure to locate the component, otherwise a full tree scanning would be necessary and that is not good for performance reasons. Instead you can use h:form prependId=”false” to prevent add the id of the form. This is the accepted way to do it by JSF spec.