向 JSF 2.0 UIInput 组件添加自定义属性 (HTML5) 支持
我正在尝试编写一个渲染器来处理
组件上的 placeholder
属性。 在阅读 JSF 2.0 strips out required HTML5 attribute 这似乎是正确的。这是我的自定义渲染器
public class InputRenderer extends com.sun.faces.renderkit.html_basic.TextRenderer{
@Override
public void encodeBegin(FacesContext context, UIComponent component)
throws IOException {
System.out.println("Rendering :"+component.getClientId());
String placeholder = (String)component.getAttributes().get("placeholder");
if(placeholder != null) {
ResponseWriter writer = context.getResponseWriter();
writer.writeAttribute("placeholder", placeholder, "placeholder");
}
super.encodeBegin(context, component);
}
@Override
public void decode(FacesContext context, UIComponent component) {
super.decode(context, component);
}
@Override
public void encodeEnd(FacesContext context, UIComponent component)
throws IOException {
super.encodeEnd(context, component);
}
}
,这个渲染器在 faces 配置中注册,因为
<render-kit>
<renderer>
<component-family>javax.faces.Input</component-family>
<renderer-type>javax.faces.Text</renderer-type>
<renderer-class>com.example.renderer.InputRenderer</renderer-class>
</renderer>
</render-kit>
这注册得很好,没有问题。
我的目的是处理 placeholder
属性,插入它,然后将处理委托给 super。我的上面的代码不起作用,因为我在错误的位置插入了属性。它必须在 writer.startElement('input')
执行后插入。但是,startElement 必须发生在 super 的 encodeBegin()
方法中的某个位置。那么如何插入自定义属性(在本例中为“占位符”)然后继续执行流程?
注意:上面的代码确实添加了一个 placeholder
属性,但没有添加到我想要的输入组件中,它将它写入输入的父级(因为我试图在组件之前写入一个属性本身实际上是写入流中的,它将属性应用于当前组件)
I am trying to write a renderer which would process the placeholder
attribute on an <h:inputText>
component.
I headed to this path after reading JSF 2.0 strips out needed HTML5 attributes and it seems correct. Here's my custom renderer
public class InputRenderer extends com.sun.faces.renderkit.html_basic.TextRenderer{
@Override
public void encodeBegin(FacesContext context, UIComponent component)
throws IOException {
System.out.println("Rendering :"+component.getClientId());
String placeholder = (String)component.getAttributes().get("placeholder");
if(placeholder != null) {
ResponseWriter writer = context.getResponseWriter();
writer.writeAttribute("placeholder", placeholder, "placeholder");
}
super.encodeBegin(context, component);
}
@Override
public void decode(FacesContext context, UIComponent component) {
super.decode(context, component);
}
@Override
public void encodeEnd(FacesContext context, UIComponent component)
throws IOException {
super.encodeEnd(context, component);
}
}
And this renderer is registered in faces config as
<render-kit>
<renderer>
<component-family>javax.faces.Input</component-family>
<renderer-type>javax.faces.Text</renderer-type>
<renderer-class>com.example.renderer.InputRenderer</renderer-class>
</renderer>
</render-kit>
This gets registered fine, no issues there.
My intention is to process the placeholder
attribute, insert it, and then delegate the processing to super. My above code doesn't work because I'm inserting the attribute at a wrong place. It must be inserted after writer.startElement('input')
has executed. However, the startElement must be happening somewhere in the super's encodeBegin()
method. So how do I insert a custom attribute ('placeholder' in this case) and then continue the execution flow?
NB: The above code does add a placeholder
attribute but not to the input component that I intend to, It writes it to the parent of the Input (since I'm trying to write an attribute before the component itself is actually written in the stream, it applies the attribute to the current component)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是我的方式。我添加了占位符和数据主题属性。如果要添加更多属性,只需将其名称添加到属性数组中即可。
您应该将其添加到 faces-config.xml 文件中。
This is my way. I added placeholder and data-theme attributes. If you want to add more attributes, you should just add its name to attributes array.
You should add this to faces-config.xml file.
您只需重写 ResponseWriters startElement 方法,该方法仅被调用一次,然后您可以恢复到原始的responsewriter 对象。
You can just override ResponseWriters startElement method, that method is only called once and then you can restore to the original responsewriter object.
并覆盖 MyFaces 2.0.8+
And to override for MyFaces 2.0.8+