- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试为我的 primefaces 数据表实现自定义过滤器。我想用树组件过滤日期字符串。这是一个屏幕截图:
Custom DataTable filter with Tree component
这是我的列定义。
<p:column filterBy="#{company.datum_wiedervorlage}" filterMatchMode="in" filterFunction="#{searchAndSelectView.filterByDatumWiedervorlage}">
<f:facet name="header">
<h:outputText style="width:150px" id="wiedervorlage_header" styleClass="single-ui-column-title" value="Datum Wiedervorlage" />
</f:facet>
<f:facet name="filter">
<p:overlayPanel for="wiedervorlage_header" hideEffect="fade" style="position: fixed" id="overlay_filter">
<p:tree value="#{searchAndSelectView.datumWiedervorlageTree}" var="entry" selectionMode="checkbox" animate="true" filterBy="#{entry}" selection="#{searchAndSelectView.selectedTreeNodeDates}">
<p:ajax event="select" update=":form" listener="#{searchAndSelectView.onTreeNodeDateSelect}"/>
<p:treeNode>
<h:outputText value="#{entry}" />
</p:treeNode>
</p:tree>
</p:overlayPanel>
</f:facet>
<p:cellEditor>
<f:facet name="output">
<h:outputText value="#{company.datum_wiedervorlage}" />
</f:facet>
<f:facet name="input">
<p:inputText id="datum_wiedervorlage_input" value="#{company.datum_wiedervorlage}" style="width:100%" />
</f:facet>
</p:cellEditor>
</p:column>
18:11:04,288 SEVERE [javax.enterprise.resource.webcontainer.jsf.context] (default task-126) java.lang.ClassCastException: org.primefaces.component.overlaypanel.OverlayPanel cannot be cast to javax.faces.component.ValueHolder
at org.primefaces.component.datatable.feature.FilterFeature.populateFilterMetaDataWithoutColumnGroups(FilterFeature.java:396)
at org.primefaces.component.datatable.feature.FilterFeature.populateFilterMetaData(FilterFeature.java:293)
at org.primefaces.component.datatable.feature.FilterFeature.decode(FilterFeature.java:93)
at org.primefaces.component.datatable.DataTable.processValidators(DataTable.java:847)
at com.sun.faces.context.PartialViewContextImpl$PhaseAwareVisitCallback.visit(PartialViewContextImpl.java:575)
at com.sun.faces.component.visit.PartialVisitContext.invokeVisitCallback(PartialVisitContext.java:183)
at org.primefaces.component.api.UIData.visitTree(UIData.java:827)
at javax.faces.component.UIComponent.visitTree(UIComponent.java:1700)
at javax.faces.component.UIComponent.visitTree(UIComponent.java:1700)
at javax.faces.component.UIComponent.visitTree(UIComponent.java:1700)
at javax.faces.component.UIForm.visitTree(UIForm.java:362)
at javax.faces.component.UIComponent.visitTree(UIComponent.java:1700)
at javax.faces.component.UIComponent.visitTree(UIComponent.java:1700)
at com.sun.faces.context.PartialViewContextImpl.processComponents(PartialViewContextImpl.java:403)
at com.sun.faces.context.PartialViewContextImpl.processPartial(PartialViewContextImpl.java:266)
at org.primefaces.context.PrimePartialViewContext.processPartial(PrimePartialViewContext.java:57)
at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:1193)
at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:76)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:198)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:658)
at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:85)
at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)
at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)
at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:78)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:131)
at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)
at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)
at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)
at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)
at io.undertow.security.handlers.NotificationReceiverHandler.handleRequest(NotificationReceiverHandler.java:50)
at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)
at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:292)
at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:81)
at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:138)
at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)
at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)
at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)
at io.undertow.servlet.api.LegacyThreadSetupActionWrapper$1.call(LegacyThreadSetupActionWrapper.java:44)
at io.undertow.servlet.api.LegacyThreadSetupActionWrapper$1.call(LegacyThreadSetupActionWrapper.java:44)
at io.undertow.servlet.api.LegacyThreadSetupActionWrapper$1.call(LegacyThreadSetupActionWrapper.java:44)
at io.undertow.servlet.api.LegacyThreadSetupActionWrapper$1.call(LegacyThreadSetupActionWrapper.java:44)
at io.undertow.servlet.api.LegacyThreadSetupActionWrapper$1.call(LegacyThreadSetupActionWrapper.java:44)
at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:272)
at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81)
at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:104)
at io.undertow.server.Connectors.executeRootHandler(Connectors.java:202)
at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:805)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
最佳答案
我找到了解决方案。我已经自定义了 OutputPanel、OverlayPanel 和 Tree 以允许创建我的自定义过滤器。对于我所有的新类,我都扩展了 Primefaces 类并实现了 ValueHolder 接口(interface)。我的自定义组件是:filterOutputPanel、overlayFilterPanel 和 TreeFilter。
这是代码:
<p:column id="dataDocColumn" filterBy="#{row.documentDate}"
headerText="Document date" filterMatchMode="equals" sortBy="#{row.documentDate}" >
<f:facet name="filter">
<cf:filterOutputPanel deferred="true">
<p:commandButton id="filterBtn" value="Filter" />
<cf:overlayFilterPanel for="filterBtn" hideEffect="fade" style="text-align:left;">
<cf:treeFilter id="dataDocTree"
value="#{myBean.rootDataDoc}" var="d"
filterBy="#{d}" style="width:150px;font-size:12px"
dynamic="true" filterMatchMode="contains"
selectionMode="checkbox"
selection="#{myBean.selectedDataDoc}">
<p:ajax event="select" oncomplete="PF('myTable').filter()" />
<p:ajax event="unselect" oncomplete="PF('myTable').filter()" />
<p:treeNode>
<h:outputText value="#{d}" />
</p:treeNode>
<p:treeNode type="month">
<h:outputText value="#{d}" />
</p:treeNode>
<p:treeNode type="date">
<h:outputText value="#{d}">
<f:convertDateTime pattern="dd-MM-yyyy" timeZone="CET" />
</h:outputText>
</p:treeNode>
</cf:treeFilter>
</cf:overlayFilterPanel>
</cf:filterOutputPanel>
</f:facet>
<h:outputText value="#{row.documentDate}" >
<f:convertDateTime pattern="dd-MM-yyyy" timeZone="CET"/>
</h:outputText>
</p:column>
@FacesComponent("view.components.FilterOutputPanel")
public class FilterOutputPanel extends OutputPanel implements ValueHolder{
public FilterOutputPanel() {
super();
}
/*
* This methods returns the local value of his child UIComponent
* that is a ValueHolder
*/
@Override
public Object getLocalValue() {
for(UIComponent c : this.getChildren()) {
if(c instanceof ValueHolder)
return ((ValueHolder) c).getLocalValue();
}
return null;
}
...
}
@FacesComponent("view.components.OverlayFilterPanel")
public class OverlayFilterPanel extends OverlayPanel implements ValueHolder{
public OverlayFilterPanel() {
super();
}
/*
* This method returns the local value of his child UIComponent,
* assuming that the only child is a TreeFilter
*/
@Override
public Object getLocalValue() {
return ((ValueHolder) this.getChildren().get(0)).getLocalValue();
}
...
}
@FacesComponent("view.components.TreeFilter")
public class TreeFilter extends Tree implements ValueHolder{
public TreeFilter() {
super();
}
/*
* This method explores the Tree and returns the data selected on the leaf nodes
*/
@Override
public Object getLocalValue() {
TreeNode[] selectedDataDoc = (TreeNode[]) this.getSelection();
if(selectedDataDoc==null)
return null;
Date[] dateArray = new Date[selectedDataDoc.length];
int j=0;
for(int i=0; i<selectedDataDoc.length; i++) {
TreeNode n = selectedDataDoc[i];
if(n.isLeaf()) {
dateArray[j] = (Date)n.getData();
j++;
}
}
Date[] result = new Date[j];
for(int i=0; i<j; i++) {
result[i]=dateArray[i];
}
return result;
}
...
}
...
<tag>
<tag-name>treeFilter</tag-name>
<component>
<description>Custom Tree filter</description>
<component-type>view.components.TreeFilter</component-type>
<renderer-type>org.primefaces.component.TreeRenderer</renderer-type>
</component>
</tag>
<tag>
<tag-name>overlayFilterPanel</tag-name>
<component>
<description>Custom Overlay Filter Panel</description>
<component-type>view.components.OverlayFilterPanel</component-type>
<renderer-type>org.primefaces.component.OverlayPanelRenderer</renderer-type>
</component>
</tag>
<tag>
<tag-name>filterOutputPanel</tag-name>
<component>
<description>Custom Output Panel for filters</description>
<component-type>view.components.FilterOutputPanel</component-type>
<renderer-type>org.primefaces.component.OutputPanelRenderer</renderer-type>
</component>
</tag>
...
<context-param>
<param-name>javax.faces.FACELETS_LIBRARIES</param-name>
<param-value>/WEB-INF/customtaglib.xml</param-value>
</context-param>
关于primefaces - :dataTable with Custom Filter: Could not be cast to ValueHolder Exception,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49561048/
我想为每个条显示不同颜色的 primefaces 条形图。我得到的最接近的就像图像: 我想用不同的颜色来表示这些条,比如绿色代表“准时”,黄色代表“警告”,红色代表“逾期” 我尝试使用 model.s
我对 Primefaces 3 对话框的构造感到困惑。 我在 SO 中看到了具有这种模式的问题。表单在对话框之外。 但另一个问题有这个。 Primef
我尝试使用一个简单的gmap示例开始开发Web应用程序,但是它对我不起作用。 我使用了在网页上找到的示例电影收藏家。我只在template.html文件中包含了这个代码。 我收到此错误: javax.
我正在使用 primefaces 3.0。我有三个文本字段,其中任何一个都是必需的。我如何在 primefaces 中验证这一点。请帮忙..谢谢 最佳答案 通常,当在组件上使用自定义 f:valida
我正在尝试为 primefaces 选择列表创建自定义过滤器。当我按照手册中的说明进行操作时,我在 primefaces 的某处遇到了 TypeError。 我对picklist的定义 我的过滤
我正在努力处理primefaces日历。我需要的是,如果今天是 2011 年 7 月 28 日,我可以限制用户选择 7 月 28 日之前 1 年和 7 月 28 日之后 3 年的日期。 我查看了 pr
有没有办法删除 p:datatable 标题上的全选复选框。 我需要单个行上的复选框,而不是标题上的复选框。 最佳答案 这非常有效: .ui-chkbox.ui-chkbox-all.ui-widge
Primefaces 3.5,Mojarra 2.1.14。这是我的 PF 数据表,它包含一个名为“自动”的不可编辑 bool 列和可编辑的“标签”列:
我想在向导的最后一个选项卡上隐藏后退按钮。 我正在使用素面。它的解决方案是什么? 谢谢 最佳答案 您可以使用 jQuery 在客户端执行此操作: 假设您正在使用展示中的向导:http://www.pr
如果我在 PrimeFaces 数据表中设置属性“scrollable=true”,它可以垂直滚动。但是可以水平滚动这个表格吗? 最佳答案 Primefaces 支持在数据表上水平滚动。只需像这样指定
我有这个代码。在用户选择一行并关闭对话框之后,它将触发rowSelect事件。在我更新为primfaces 3.3(我安装了ver3.2)之前,它工作得很好。我在控制台中没有任何异常,当我调试时,我看
是否存在任何方法来设置 primefaces 的日历组件的年份列表? 最佳答案 对于年份列表,您可以使用 navigator="true" p:calendar 中素面的属性标记和年份范围 c-100
我正在使用 primefaces 3.2。我已经准备好了向导,可以在数据表的同一页面上插入用户信息。向导逐个选项卡获取信息并在确认选项卡上提交。它还将反射(reflect)在数据表的同一页面上。它运行
我有一个 p:treeTable,树内容都在一列中。该树是一个共享组件,因此我的某些页面需要列标题,而有些则不需要。在列标题为空的页面中,它为列标题创建一个空行,这是我不想要的。我确实想要列内容,只是
我使用的是primefaces 3.4,我在 p:overlaypanel 中有一个 p:calendar 。当我选择日期时,覆盖面板关闭(使用 Google Chrome 时)当我使用 Firefo
当我使用日历时,我将“timeOnly”设置为“true”,将“pattern”设置为“HH:mm a”。 当输入时间大于或等于“13:00 pm”时,日历每次获得焦点,都会 自动将时间更改为“23:
我也在尝试获取枚举“CityCodes.java”中定义的城市代码,这是我的枚举类,我的定义如下: public enum Cities { AL("Alabama","1"), AK("Alaska
在 PrimeFaces 展示页面上有一个简单的标题栏,适合实际主题。我的意思是此页面上的“欢迎来到 PrimeFaces 展示”文本:http://www.primefaces.org/showca
是否可以在 Primefaces 中创建垂直菜单栏? 我习惯了像 Ext-JS 这样简单的纯 AJax 框架,但到目前为止我还没有在 PF 中看到这样的组件。 谢谢, 乔 最佳答案 它被称为分层菜单。
是否可以设置 Primefaces 的 ScrollPanel 的滚动速度? Scrollpanel 在“ native ”模式下的滚动速度可以,但在“默认”模式下不行。 我使用的是 Primefac
我是一名优秀的程序员,十分优秀!