Author: konstantin.mishin
Date: 2008-04-02 10:09:15 -0400 (Wed, 02 Apr 2008)
New Revision: 7579
Modified:
trunk/framework/impl/src/main/java/org/richfaces/model/impl/expressive/WrappedBeanFilter.java
Log:
RF-2912
Modified:
trunk/framework/impl/src/main/java/org/richfaces/model/impl/expressive/WrappedBeanFilter.java
===================================================================
---
trunk/framework/impl/src/main/java/org/richfaces/model/impl/expressive/WrappedBeanFilter.java 2008-04-02
12:53:55 UTC (rev 7578)
+++
trunk/framework/impl/src/main/java/org/richfaces/model/impl/expressive/WrappedBeanFilter.java 2008-04-02
14:09:15 UTC (rev 7579)
@@ -27,7 +27,7 @@
String filterValue = ((ExtendedFilterField)filterField).getFilterValue();
if(filterValue != null) {
filterValue = filterValue.trim().toUpperCase();
- if(!property.toString().trim().toUpperCase().startsWith(filterValue)) {
+ if(property == null ||
!property.toString().trim().toUpperCase().startsWith(filterValue)) {
return false;
}
}
Show replies by date