我使用 JSF 2。我需要编写一个自定义标签来更改其中消息的样式类。所以如果我有这样的代码:
<my:errorGrid errorClass="#{richBean.erClass}" >
<my:inputField id="pid1" value="#{richBean.pid}" fsType="pid">
</my:inputField>
<h:message for="pid1" ajaxRendered="true"/>
</my:errorGrid>
错误消息应与附加样式类一起输出。此 styleClass 的名称取自自定义标签my:errorGrid的属性errorClass
据我了解,我需要在模板中使用vcp:body标记并在encodeChildren()方法中处理子项。拜托,谁能给我一些提示如何实现它?也许一些建议或链接。