I can't seem to debug this.
when I click on Communication, in the partymgr the find with no
parameters set.
https://localhost:8443/partymgr/control/ListLookupCommEventsget this URL.
which brings us to this code.
<form name="ListLookupCommEvents"
default-title-style="tableheadtext"
default-tooltip-style="tabletext"
default-widget-style="tabletext"
extends="ListCommEvents"
list-name="listIt"
paginate-target="ListLookupCommEvents"
target="updateCommunicationEvent"
title=""
type="list">
<actions>
<service result-map-list-name="listIt"
result-map-name="result" service-name="performFind">
<field-map env-name="parameters" field-name="inputFields"/>
<field-map env-name="entityName" field-name="entityName"/>
</service>
</actions>
<field name="removeLink" title="" widget-style="buttontext">
<hyperlink also-hidden="false"
description="${uiLabelMap.CommonDelete}"
target="deleteCommunicationEvent?communicationEventId=${communicationEventId}"/>
</field>
</form>
when I click on next I get
https://digiresources.businessesnetwork.com:8443/partymgr/control/ListLookupCommEvents?datetimeStarted_fld0_op=sameDay&subject_op=equals&communicationEventId_op=equals&datetimeEnded_fld0_op=sameDay&noConditionFind=Y&VIEW_SIZE=100&VIEW_INDEX=1#I can't find where the VIEW_SIZE=100 is being put in.
or the other vars being passed
If I add
paginate-size-field="20"
the URL is
https://localhost:8443/partymgr/control/ListLookupCommEvents?datetimeStarted_fld0_op=sameDay&subject_op=equals&communicationEventId_op=equals&datetimeEnded_fld0_op=sameDay&noConditionFind=Y&20=100&VIEW_INDEX=1#The VIEW_SIZE=100 changes to 20=100
some pointers would be appreciated.