JSF不呈现自定义HTML标记属性

时间:2013-05-21 09:24:26

标签: html jsf custom-attributes renderer

我想在登录表单中添加一些iOS特定的标记属性。如果我查看我的网页源代码,那么属性autocorrect,autocapitalize和spellcheck就不存在了。这是什么原因?我正在使用JSF 2.x。

<h:inputText id="user-name" forceId="true" value="#{login.username}" style="width:120px;"
    autocorrect="off" autocapitalize="off" spellcheck="false" />

1 个答案:

答案 0 :(得分:60)

这是设计的。您只能通过JSF组件本身指定supported的属性(即它在tag documentation的属性列表中列出)。您不能指定任意附加属性,它们都将被忽略。

有几种方法可以解决这个问题:

  1. 如果您已使用JSF 2.2+,只需将其指定为passthrough attribute

    <html ... xmlns:a="http://xmlns.jcp.org/jsf/passthrough">
    ...
    <h:inputText ... a:autocorrect="off" />
    

    (请注意,我使用xmlns:a代替xmlns:p以避免与PrimeFaces默认命名空间发生冲突)

    或者:

    <html ... xmlns:f="http://xmlns.jcp.org/jsf/core">
    ...
    <h:inputText ...>
        <f:passThroughAttribute name="autocorrect" value="off" />
    </h:inputText>
    

  2. 使用OmniFaces Html5RenderKit。自1.5版本发布以来,它支持通过<context-param>指定自定义属性。另请参阅showcase exampleJavadoc


  3. 创建自定义渲染器。您可以在以下答案中找到几个具体的例子: