JSF inputText 标签:翻译标签属性
JSF inputText Tag: Translate label attribute
我正在尝试翻译 inputText 的 de label 属性,但我不知道是否可行。
我的代码如下:
<h:outputLabel for="input_titulo" value="#{msg.titulo}"/>
<h:inputText value="#{bean.titulo}" id="input_titulo"
required="true" label="#{msg.titulo}">
<f:validateLength maximum="255" />
</h:inputText>
"titulo" 是我正在使用的 Messages.properties 的一个键,它在 outputLabel 标签中显示得很好。
但是显示验证错误时,该字段的标签为空:
"": La longitud del valor es mayor al máximo permitido de 255 caracteres.
我正在使用 myfaces 2.0.2 实现。
myfaces 2.0.2 实现中存在与我的问题相关的错误:
https://issues.apache.org/jira/browse/MYFACES-1729
我尝试使用 myfaces 2.2.12,它工作正常。
我正在尝试翻译 inputText 的 de label 属性,但我不知道是否可行。
我的代码如下:
<h:outputLabel for="input_titulo" value="#{msg.titulo}"/>
<h:inputText value="#{bean.titulo}" id="input_titulo"
required="true" label="#{msg.titulo}">
<f:validateLength maximum="255" />
</h:inputText>
"titulo" 是我正在使用的 Messages.properties 的一个键,它在 outputLabel 标签中显示得很好。
但是显示验证错误时,该字段的标签为空:
"": La longitud del valor es mayor al máximo permitido de 255 caracteres.
我正在使用 myfaces 2.0.2 实现。
myfaces 2.0.2 实现中存在与我的问题相关的错误:
https://issues.apache.org/jira/browse/MYFACES-1729
我尝试使用 myfaces 2.2.12,它工作正常。