JSF 2.0 f:ajax 控件是否与 tomahawk 'forceId = true' 属性一起使用?
问问题
588 次
1 回答
1
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.
于 2011-10-19T15:11:09.637 回答