Grails - Filterpane associatedProperties

时间:2013-12-30 07:04:49

标签: java grails gorm

在foll的典型案例中。 domain class是否可以根据相关属性应用过滤器参数。

域类:

  Transaction{ 

     String dcNumber; 

     String status; 

     Customer fromCustomer; 

     Customer toCustomer; 

     static belongsto = Customer 

}

在list.gsp中的

我已经将filterpane应用为,

                       <filterpane:filterPane domain="Transaction"   

                           associatedProperties="fromCustomer.customerName,toCustomer.customerName"                               
                           filterPropertyValues="${[ 
                                   'fromCustomer.customerName':[values: com.test.Customer.list()], 
                                   'toCustomer.customerName':[values: com.test.Customer.list()] 
                               ]}" 
                        />

现在,在过滤时我只能在过滤网格中看到fromCustomer,另一个参数toCustomer 根本不被视为/可见,我错过了什么......?

1 个答案:

答案 0 :(得分:0)

我使用filterpane插件 - 2.1.3将其升级到2.3.1后,上述问题得到了完美解决。