扩展Richfaces组件 - 例如自定义Datatable组件以进行特定实现
如何使用自定义标头和排序技术扩展 Richfaces 组件的功能,例如数据表。我看过扩展数据表,但没有从中获得太多信息。如果有的话请给我举一个例子。
谢谢索玛
How to extend the functionality of Richfaces components for example Data table with custom header and sorting techniques. i have seen extended data table but did not get much information from it. Please point me to an example if at it is available.
Thanks
Soma
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么,您可以使用常规 java 扩展 (
extends
) 来扩展 JSF 组件。您必须扩展许多类,具体取决于具体的组件:UIComponentName
/HtmlComponentName
HtmlComponentNameRenderer
ComponentNameTag
和您可能需要在faces-config.xml中注册渲染器。
您可以查看此线程,或者谷歌搜索“扩展 JSF 组件”或“创建自定义 JSF 组件”。
Well, you can extend a JSF component with the regular java extension (
extends
). You will have to extend a number of classes, depending on the exact component:UIComponentName
/HtmlComponentName
HtmlComponentNameRenderer
ComponentNameTag
and you might need to register the renderer in
faces-config.xml
.You can take a look at this thread, or google for "Extend JSF component" or "Create custom JSF component".