Author: jleroux
Date: Mon May 5 14:06:47 2014
New Revision: 1592530
URL:
http://svn.apache.org/r1592530Log:
Fixes "Pagination at find WorkEffort screen does not work"
https://issues.apache.org/jira/browse/OFBIZ-5629I simply reused listIt in removeDuplicateWorkEfforts service which is called after performFind in ListWorkEfforts (itself extended by FoundWorkEfforts)
Modified:
ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml
Modified: ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml?rev=1592530&r1=1592529&r2=1592530&view=diff==============================================================================
--- ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml (original)
+++ ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml Mon May 5 14:06:47 2014
@@ -396,7 +396,7 @@ under the License.
</sort-order>
</form>
- <form name="ListWorkEfforts" type="list" list-name="workEfforts" paginate-target="ListWorkEfforts"
+ <form name="ListWorkEfforts" type="list" list-name="listIt" paginate-target="ListWorkEfforts"
odd-row-style="alternate-row" default-table-style="basic-table hover-bar">
<actions>
<service service-name="performFind" result-map="result" result-map-list="listIt">
@@ -406,7 +406,7 @@ under the License.
<field-map field-name="viewIndex" from-field="viewIndex"/>
<field-map field-name="viewSize" from-field="viewSize"/>
</service>
- <service service-name="removeDuplicateWorkEfforts" result-map="result" result-map-list="workEfforts">
+ <service service-name="removeDuplicateWorkEfforts" result-map="result" result-map-list="listIt">
<field-map field-name="workEffortIterator" from-field="listIt"/>
</service>
</actions>