Author: hansbak
Date: Wed Jan 16 20:39:02 2008 New Revision: 612706 URL: http://svn.apache.org/viewvc?rev=612706&view=rev Log: add paging to the communication subscreens Modified: ofbiz/trunk/applications/party/webapp/partymgr/communication/CommForms.xml ofbiz/trunk/applications/party/widget/partymgr/CommunicationScreens.xml Modified: ofbiz/trunk/applications/party/webapp/partymgr/communication/CommForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/webapp/partymgr/communication/CommForms.xml?rev=612706&r1=612705&r2=612706&view=diff ============================================================================== --- ofbiz/trunk/applications/party/webapp/partymgr/communication/CommForms.xml (original) +++ ofbiz/trunk/applications/party/webapp/partymgr/communication/CommForms.xml Wed Jan 16 20:39:02 2008 @@ -341,7 +341,7 @@ </actions> </form> - <form name="ListChildCommEvents" type="list" extends="ListCommEvents"> + <form name="ListChildCommEvents" type="list" extends="ListCommEvents" paginate-target="EditCommunicationEvent"> <actions> <entity-condition entity-name="CommunicationEvent"> <condition-list combine="or"> @@ -366,7 +366,7 @@ </field> </form> - <form name="ListCommWorkEfforts" type="list"> + <form name="ListCommWorkEfforts" type="list" paginate-target="ListCommWorkEfforts"> <actions> <entity-and entity-name="CommunicationEventWorkEff" use-cache="false"> <field-map field-name="communicationEventId"/> @@ -394,7 +394,7 @@ </sort-order> </form> - <form name="ListCommPurposes" type="list"> + <form name="ListCommPurposes" type="list" paginate-target="UpdateCommPurposes"> <actions> <entity-and entity-name="CommunicationEventPurpose" use-cache="true"> <field-map field-name="communicationEventId"/> @@ -421,7 +421,7 @@ <field name="submitButton" title="${uiLabelMap.PartyAddPurpose}"><submit button-type="button"/></field> </form> - <form name="ListCommRoles" type="list"> + <form name="ListCommRoles" type="list" paginate-target="UpdateCommRoles"> <actions> <entity-and entity-name="CommunicationEventRole" use-cache="true"> <field-map field-name="communicationEventId"/> Modified: ofbiz/trunk/applications/party/widget/partymgr/CommunicationScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/CommunicationScreens.xml?rev=612706&r1=612705&r2=612706&view=diff ============================================================================== --- ofbiz/trunk/applications/party/widget/partymgr/CommunicationScreens.xml (original) +++ ofbiz/trunk/applications/party/widget/partymgr/CommunicationScreens.xml Wed Jan 16 20:39:02 2008 @@ -266,6 +266,8 @@ <entity-one entity-name="Person" use-cache="true" value-name="lookupPerson"/> <entity-one entity-name="CommunicationEvent" value-name="communicationEvent"/> <script location="component://party/webapp/partymgr/WEB-INF/actions/communication/findCommEventContactMechs.bsh"/> + <set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer"/> + <set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="20"/> </actions> <widgets> <decorator-screen name="CommonCommunicationEventDecorator" location="${parameters.mainDecoratorLocation}"> @@ -336,6 +338,8 @@ <entity-one entity-name="Party" use-cache="true" value-name="party"/> <entity-one entity-name="Person" use-cache="true" value-name="lookupPerson"/> <entity-one entity-name="CommunicationEvent" value-name="communicationEvent"/> + <set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer"/> + <set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="20"/> </actions> <widgets> <decorator-screen name="CommonCommunicationEventDecorator" location="${parameters.mainDecoratorLocation}"> @@ -376,6 +380,8 @@ <entity-one entity-name="Party" use-cache="true" value-name="party"/> <entity-one entity-name="Person" use-cache="true" value-name="lookupPerson"/> <entity-one entity-name="CommunicationEvent" value-name="communicationEvent"/> + <set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer"/> + <set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="20"/> </actions> <widgets> <decorator-screen name="CommonCommunicationEventDecorator" location="${parameters.mainDecoratorLocation}"> @@ -412,6 +418,8 @@ <set field="partyIdFrom" value="${parameters.partyIdFrom}"/> <set field="partyIdTo" value="${parameters.partyIdTo}"/> <set field="entityName" value="CommunicationEvent"/> + <set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer"/> + <set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="20"/> </actions> <widgets> <decorator-screen name="CommonCommunicationEventDecorator" location="${parameters.mainDecoratorLocation}"> @@ -484,6 +492,8 @@ <set default-value="${userLogin.partyId}" field="partyIdFrom" value="${parameters.partyIdFrom}"/> <set default-value="${userLogin.partyId}" field="partyIdTo" value="${parameters.partyIdTo}"/> <set field="communicationEventId" value="${parameters.communicationEventId}"/> + <set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer"/> + <set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="20"/> </actions> <widgets> <decorator-screen name="CommonCommunicationEventDecorator" location="${parameters.mainDecoratorLocation}"> |
Free forum by Nabble | Edit this page |