Author: mbrohl
Date: Fri Sep 16 21:52:52 2016 New Revision: 1761100 URL: http://svn.apache.org/viewvc?rev=1761100&view=rev Log: Improved: Party: Consistent form name. (OFBIZ-8088) Change all form names to upper camel case for consistency. I have slightly modified the patch to have camel case also for the LookupParty form in PartyForms.xml. Thanks: Tanmay Muley for reporting and providing the patch. Modified: ofbiz/trunk/applications/party/widget/partymgr/CommunicationEventForms.xml ofbiz/trunk/applications/party/widget/partymgr/CommunicationEventScreens.xml ofbiz/trunk/applications/party/widget/partymgr/LookupForms.xml ofbiz/trunk/applications/party/widget/partymgr/LookupScreens.xml ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml ofbiz/trunk/applications/party/widget/partymgr/PartyScreens.xml ofbiz/trunk/applications/party/widget/partymgr/ProfileScreens.xml ofbiz/trunk/specialpurpose/assetmaint/widget/LookupScreens.xml ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml ofbiz/trunk/specialpurpose/scrum/widget/scrumScreens.xml Modified: ofbiz/trunk/applications/party/widget/partymgr/CommunicationEventForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/CommunicationEventForms.xml?rev=1761100&r1=1761099&r2=1761100&view=diff ============================================================================== --- ofbiz/trunk/applications/party/widget/partymgr/CommunicationEventForms.xml (original) +++ ofbiz/trunk/applications/party/widget/partymgr/CommunicationEventForms.xml Fri Sep 16 21:52:52 2016 @@ -343,7 +343,7 @@ under the License. </sort-order> </form> - <form name="findCommEvents" type="single" target="FindCommunicationEvents" paginate="true" focus-field-name="submitButton" + <form name="FindCommEvents" type="single" target="FindCommunicationEvents" paginate="true" focus-field-name="submitButton" header-row-style="header-row" default-table-style="basic-table"> <field name="noConditionFind"><hidden value="Y"/><!-- if this isn't there then with all fields empty no query will be done --></field> <field name="communicationEventId" position="1"><text-find/></field> @@ -721,7 +721,7 @@ under the License. </field> </form> - <form name="listCommContent" type="list" list-name="contentDataResourceList" paginate-target="/ListCommContent" target="removeAttachFile" + <form name="ListCommContent" type="list" list-name="contentDataResourceList" paginate-target="/ListCommContent" target="removeAttachFile" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <entity-and entity-name="CommEventContentDataResource" list="contentDataResourceList"> @@ -743,7 +743,7 @@ under the License. <field name="deleteButton"><submit button-type="text-link"/></field> </form> - <form name="addCommContent" type="single" target="createCommContentDataResource" + <form name="AddCommContent" type="single" target="createCommContentDataResource" header-row-style="header-row" default-table-style="basic-table"> <field name="communicationEventId"><hidden/></field> <field name="contentId"><ignored/></field> @@ -776,7 +776,7 @@ under the License. <field name="submitButton" title="${uiLabelMap.CommonSubmit}"><submit button-type="button"/></field> </form> - <form name="editCommContent" type="single" target="updateCommContentDataResource" default-map-name="commEventContentDataResource" + <form name="EditCommContent" type="single" target="updateCommContentDataResource" default-map-name="commEventContentDataResource" header-row-style="header-row" default-table-style="basic-table"> <field name="communicationEventId"><display/></field> <field name="contentId"><display/></field> @@ -847,7 +847,7 @@ under the License. <field name="submitButton" title="${uiLabelMap.CommonSubmit}"><submit button-type="button"/></field> </form> - <form name="uploadCommContent" type="upload" target="uploadCommEventContent" default-map-name="commEventContentDataResource"> + <form name="UploadCommContent" type="upload" target="uploadCommEventContent" default-map-name="commEventContentDataResource"> <field name="contentId" map-name="contentAssoc"><hidden/></field> <field name="drDataResourceId"><hidden/></field> <field name="drDataResourceTypeId"><hidden/></field> @@ -860,7 +860,7 @@ under the License. <field name="submitButton" title="${uiLabelMap.CommonUpload}"><submit/></field> </form> - <form name="uploadContent" type="upload" target="uploadAttachFiletoEmail"> + <form name="UploadContent" type="upload" target="uploadAttachFiletoEmail"> <field name="dataCategoryId"><hidden value="PERSONAL"/></field> <field name="contentTypeId"><hidden value="DOCUMENT"/></field> <field name="resourceStatusId"><hidden value="CTNT_PUBLISHED"/></field> @@ -879,12 +879,12 @@ under the License. <submit button-type="button"/> </field> </form> - <form name="uploadContent1" type="upload" extends="uploadContent" target="uploadAttachFile"> + <form name="UploadContent1" type="upload" extends="UploadContent" target="uploadAttachFile"> <field name="send"><ignored/></field> <field name="submitButton" title="${uiLabelMap.CommonUpload}"><submit/></field> </form> - <form name="editCommTextContent" type="single" target="uploadCommEventContent" default-map-name="commEventContentDataResource" + <form name="EditCommTextContent" type="single" target="uploadCommEventContent" default-map-name="commEventContentDataResource" header-row-style="header-row" default-table-style="basic-table"> <field name="contentId" ><hidden/></field> <field name="drDataResourceId" ><hidden/></field> @@ -922,7 +922,7 @@ under the License. <field name="deleteSelectedButton" widget-style="smallSubmit"><submit/></field> </form> - <form name="allocateMsgToPartyForm" type="single" target="allocateMsgToParty" title="create a new party for a unknown incoming email address"> + <form name="AllocateMsgToPartyForm" type="single" target="allocateMsgToParty" title="create a new party for a unknown incoming email address"> <actions> <script location="component://party/groovyScripts/communication/GetPartyEmailFromCommEventInfo.groovy"/> </actions> @@ -937,7 +937,7 @@ under the License. <field name="lastName"><text/></field> <field name="submit" title="${uiLabelMap.PartyCreateAddEmail}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> - <form name="deleteEmail" type="single" title="delete the email" + <form name="DeleteEmail" type="single" title="delete the email" target="deleteUnknownCommunicationEvent"> <field name="donePage"><hidden value="${donePage}"/></field> <field name="communicationEventId"><hidden value="${parameters.communicationEventId}"/></field> Modified: ofbiz/trunk/applications/party/widget/partymgr/CommunicationEventScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/CommunicationEventScreens.xml?rev=1761100&r1=1761099&r2=1761100&view=diff ============================================================================== --- ofbiz/trunk/applications/party/widget/partymgr/CommunicationEventScreens.xml (original) +++ ofbiz/trunk/applications/party/widget/partymgr/CommunicationEventScreens.xml Fri Sep 16 21:52:52 2016 @@ -358,7 +358,7 @@ under the License. <widgets> <decorator-screen name="FindScreenDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="findCommEvents"/> + <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="FindCommEvents"/> </decorator-section> <decorator-section name="search-results"> <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="ListLookupCommEvents"/> @@ -426,7 +426,7 @@ under the License. </fail-widgets> </section> <screenlet title="${uiLabelMap.PartyCommContent}"> - <include-form name="listCommContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> + <include-form name="ListCommContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> </screenlet> <section> <actions> @@ -485,7 +485,7 @@ under the License. <container> <label style="h2" text="${uiLabelMap.PartyEmailMessage}"/> </container> - <include-form name="allocateMsgToPartyForm" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> + <include-form name="AllocateMsgToPartyForm" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> </screenlet> </widgets> </section> @@ -690,10 +690,10 @@ under the License. <widgets> <container> <screenlet title="${uiLabelMap.PartyCommContent}"> - <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="listCommContent"/> + <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="ListCommContent"/> </screenlet> <screenlet title="${uiLabelMap.PartyAttachContent}"> - <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="uploadContent1"/> + <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="UploadContent1"/> </screenlet> </container> </widgets> @@ -728,7 +728,7 @@ under the License. </condition> <widgets> <screenlet title="${uiLabelMap.PartyNewCommContent}"> - <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="addCommContent"/> + <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="AddCommContent"/> </screenlet> </widgets> <fail-widgets> @@ -773,7 +773,7 @@ under the License. </widgets> </section> <container style="h1"><label text="${uiLabelMap.PageTitleEditCommContent}"/></container> - <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="editCommContent"/> + <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="EditCommContent"/> <section> <condition> <if-regexp expr="text.*" field="commEventContentDataResource.drMimeTypeId"/> @@ -785,7 +785,7 @@ under the License. </actions> <widgets> <screenlet title="${uiLabelMap.PageTitleEditCommContent}"> - <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="editCommTextContent"/> + <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="EditCommTextContent"/> </screenlet> </widgets> </section> @@ -797,7 +797,7 @@ under the License. </condition> <widgets> <screenlet title="${uiLabelMap.PartyViewImage}"> - <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="uploadCommContent"/> + <include-form location="component://party/widget/partymgr/CommunicationEventForms.xml" name="UploadCommContent"/> <label text="${uiLabelMap.PartyViewImage}" style="h1"/> <content dataresource-id="${commEventContentDataResource.drDataResourceId}"/> </screenlet> @@ -1111,8 +1111,8 @@ under the License. </container> <container style="righthalf"> <screenlet title="${uiLabelMap.PartyCommContent}"> - <include-form name="listCommContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> - <include-form name="uploadContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> + <include-form name="ListCommContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> + <include-form name="UploadContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> </screenlet> </container> </fail-widgets> @@ -1149,8 +1149,8 @@ under the License. <include-form name="AddEventRole" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> </screenlet> <screenlet title="${uiLabelMap.PartyCommContent}"> - <include-form name="listCommContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> - <include-form name="uploadContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> + <include-form name="ListCommContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> + <include-form name="UploadContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> </screenlet> </container> </fail-widgets> Modified: ofbiz/trunk/applications/party/widget/partymgr/LookupForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/LookupForms.xml?rev=1761100&r1=1761099&r2=1761100&view=diff ============================================================================== --- ofbiz/trunk/applications/party/widget/partymgr/LookupForms.xml (original) +++ ofbiz/trunk/applications/party/widget/partymgr/LookupForms.xml Fri Sep 16 21:52:52 2016 @@ -21,7 +21,7 @@ under the License. <forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ofbiz.apache.org/Widget-Form" xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form http://ofbiz.apache.org/dtds/widget-form.xsd"> - <form name="lookupPartyName" target="LookupPartyName" type="single" + <form name="LookupPartyName" target="LookupPartyName" type="single" header-row-style="header-row" default-table-style="basic-table"> <!--<auto-fields-entity entity-name="PartyNameView" default-field-type="find"/>--> <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find/></field> @@ -37,7 +37,7 @@ under the License. <field name="submitButton" title="${uiLabelMap.CommonFind}"><submit button-type="button"/></field> </form> - <form name="listLookupPartyName" type="list" list-name="listIt" paginate-target="LookupPartyName" + <form name="ListLookupPartyName" type="list" list-name="listIt" paginate-target="LookupPartyName" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <set field="inputFields" from-field="parameters"/> @@ -57,7 +57,7 @@ under the License. <field name="groupName" title="${uiLabelMap.PartyGroupName}"><display/></field> </form> - <form name="lookupPartyEmail" target="LookupPartyEmail" type="single" + <form name="LookupPartyEmail" target="LookupPartyEmail" type="single" header-row-style="header-row" default-table-style="basic-table"> <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find/></field> <field name="partyTypeId" title="${uiLabelMap.PartyTypeId}"> @@ -72,7 +72,7 @@ under the License. <field name="submitButton" title="${uiLabelMap.CommonFind}"><submit button-type="button"/></field> </form> - <form name="listLookupPartyEmail" type="list" list-name="listIt" paginate-target="LookupPartyEmail" + <form name="ListLookupPartyEmail" type="list" list-name="listIt" paginate-target="LookupPartyEmail" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <set field="parameters.contactMechTypeId" value="EMAIL_ADDRESS"/> @@ -93,7 +93,7 @@ under the License. <field name="infoString" title="${uiLabelMap.PartyEmailAddress}"><display/></field> </form> - <form name="lookupCustomerName" target="LookupCustomerName" type="single" + <form name="LookupCustomerName" target="LookupCustomerName" type="single" header-row-style="header-row" default-table-style="basic-table"> <field name="roleTypeId"><hidden value="CUSTOMER"/></field> <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find/></field> @@ -108,7 +108,7 @@ under the License. <field name="noConditionFind"><hidden value="Y"/><!-- if this isn't there then with all fields empty no query will be done --></field> <field name="submitButton" title="${uiLabelMap.CommonFind}"><submit button-type="button"/></field> </form> - <form name="listLookupCustomerName" type="list" list-name="listIt" paginate-target="LookupCustomerName" + <form name="ListLookupCustomerName" type="list" list-name="listIt" paginate-target="LookupCustomerName" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <set field="inputFields" from-field="parameters"/> @@ -127,7 +127,7 @@ under the License. <field name="groupName" title="${uiLabelMap.PartyGroupName}"><display/></field> </form> - <form name="lookupCustomerNameForSalesRep" target="LookupCustomerNameForSalesRep" type="single" + <form name="LookupCustomerNameForSalesRep" target="LookupCustomerNameForSalesRep" type="single" header-row-style="header-row" default-table-style="basic-table"> <field name="roleTypeId"><hidden value="CUSTOMER"/></field> <field name="roleTypeIdFrom"><hidden value="SALES_REP"/></field> @@ -146,7 +146,7 @@ under the License. <field name="noConditionFind"><hidden value="Y"/><!-- if this isn't there then with all fields empty no query will be done --></field> <field name="submitButton" title="${uiLabelMap.CommonFind}"><submit button-type="button"/></field> </form> - <form name="listLookupCustomerNameForSalesRep" type="list" list-name="listIt" paginate-target="LookupCustomerNameForSalesRep" + <form name="ListLookupCustomerNameForSalesRep" type="list" list-name="listIt" paginate-target="LookupCustomerNameForSalesRep" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <service service-name="performFind" result-map="result" result-map-list="listIt"> @@ -169,7 +169,7 @@ under the License. </form> <!-- Person Lookup forms --> - <form name="lookupPerson" type="single" target="LookupPerson" + <form name="LookupPerson" type="single" target="LookupPerson" header-row-style="header-row" default-table-style="basic-table"> <!--<auto-fields-entity entity-name="Person" default-field-type="find"/>--> <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find/></field> @@ -179,7 +179,7 @@ under the License. <field name="submitButton" title="${uiLabelMap.CommonFind}"><submit button-type="button"/></field> </form> - <form name="listLookupPerson" type="list" list-name="listIt" paginate-target="LookupPerson" + <form name="ListLookupPerson" type="list" list-name="listIt" paginate-target="LookupPerson" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <script location="component://party/groovyScripts/party/FindLookUp.groovy"/> @@ -196,7 +196,7 @@ under the License. <field name="nickname" title="${uiLabelMap.PartyNickName}"><display/></field> </form> - <form name="lookupPartyAndUserLoginAndPerson" type="single" target="LookupPartyAndUserLoginAndPerson" + <form name="LookupPartyAndUserLoginAndPerson" type="single" target="LookupPartyAndUserLoginAndPerson" paginate-target="LookupPartyAndUserLoginAndPerson" header-row-style="header-row" default-table-style="basic-table"> <!--<auto-fields-entity entity-name="PartyAndUserLoginAndPerson" default-field-type="find"/>--> <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find/></field> @@ -210,7 +210,7 @@ under the License. <field name="submitButton" title="${uiLabelMap.CommonFind}"><submit button-type="button"/></field> </form> - <form name="listLookupPartyAndUserLoginAndPerson" type="list" list-name="listIt" paginate-target="LookupPartyAndUserLoginAndPerson" + <form name="ListLookupPartyAndUserLoginAndPerson" type="list" list-name="listIt" paginate-target="LookupPartyAndUserLoginAndPerson" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <set field="inputFields" from-field="requestParameters"/> @@ -227,7 +227,7 @@ under the License. <field name="lastName" title="${uiLabelMap.PartyName}"><display description="${firstName} ${middleName} ${lastName} ${groupName}"/></field> </form> - <form name="lookupUserLoginAndPartyDetails" type="single" target="LookupUserLoginAndPartyDetails" + <form name="LookupUserLoginAndPartyDetails" type="single" target="LookupUserLoginAndPartyDetails" paginate-target="LookupUserLoginAndPartyDetails" header-row-style="header-row" default-table-style="basic-table"> <field name="userLoginId" title="${uiLabelMap.CommonUserLoginId}"><text-find/></field> <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find/></field> @@ -240,7 +240,7 @@ under the License. <field name="submitButton" title="${uiLabelMap.CommonFind}"><submit button-type="button"/></field> </form> - <form name="listLookupUserLoginAndPartyDetails" type="list" list-name="listIt" paginate-target="LookupUserLoginAndPartyDetails" + <form name="ListLookupUserLoginAndPartyDetails" type="list" list-name="listIt" paginate-target="LookupUserLoginAndPartyDetails" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <set field="inputFields" from-field="requestParameters"/> @@ -257,7 +257,7 @@ under the License. <field name="groupName" title="${uiLabelMap.PartyGroupName}"><display description="${groupName}"/></field> </form> - <form name="lookupPartyGroup" type="single" target="LookupPartyGroup" + <form name="LookupPartyGroup" type="single" target="LookupPartyGroup" header-row-style="header-row" default-table-style="basic-table"> <!--<auto-fields-entity entity-name="PartyGroup" default-field-type="find"/>--> <field name="partyId" title="${uiLabelMap.PartyPartyId}"><text-find/></field> @@ -266,7 +266,7 @@ under the License. <field name="submitButton" title="${uiLabelMap.CommonFind}"><submit button-type="button"/></field> </form> - <form name="listLookupPartyGroup" type="list" list-name="listIt" paginate-target="LookupPartyGroup" + <form name="ListLookupPartyGroup" type="list" list-name="listIt" paginate-target="LookupPartyGroup" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <script location="component://party/groovyScripts/party/FindLookUp.groovy"/> @@ -294,7 +294,7 @@ under the License. <field name="submitButton" title="${uiLabelMap.CommonFind}"><submit button-type="button"/></field> </form> - <form name="listLookupPartyClassificationGroup" type="list" list-name="listIt" + <form name="ListLookupPartyClassificationGroup" type="list" list-name="listIt" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <service service-name="performFind" result-map="result" result-map-list="listIt"> @@ -384,7 +384,7 @@ under the License. <field name="datetimeEnded" title="${uiLabelMap.CommonFinishDate}"><display/></field> </form> - <form name="lookupContactMech" target="LookupContactMech" type="single" + <form name="LookupContactMech" target="LookupContactMech" type="single" header-row-style="header-row" default-table-style="basic-table"> <field name="contactMechId"><text-find/></field> <field name="contactMechTypeId"> @@ -408,7 +408,7 @@ under the License. <field name="submitButton" title="${uiLabelMap.CommonFind}"><submit button-type="button"/></field> </form> - <form name="listLookupContactMech" type="list" list-name="listIt" paginate-target="LookupContactMech" + <form name="ListLookupContactMech" type="list" list-name="listIt" paginate-target="LookupContactMech" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <actions> <set field="inputFields" from-field="parameters"/> Modified: ofbiz/trunk/applications/party/widget/partymgr/LookupScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/LookupScreens.xml?rev=1761100&r1=1761099&r2=1761100&view=diff ============================================================================== --- ofbiz/trunk/applications/party/widget/partymgr/LookupScreens.xml (original) +++ ofbiz/trunk/applications/party/widget/partymgr/LookupScreens.xml Fri Sep 16 21:52:52 2016 @@ -51,10 +51,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupPartyName" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupPartyName" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupPartyName" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupPartyName" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -78,10 +78,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupPartyEmail" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupPartyEmail" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupPartyEmail" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupPartyEmail" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -106,10 +106,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupCustomerName" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupCustomerName" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupCustomerName" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupCustomerName" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -132,10 +132,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupCustomerNameForSalesRep" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupCustomerNameForSalesRep" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupCustomerNameForSalesRep" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupCustomerNameForSalesRep" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -158,10 +158,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -185,10 +185,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -208,10 +208,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -237,10 +237,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupPartyAndUserLoginAndPerson" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupPartyAndUserLoginAndPerson" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupPartyAndUserLoginAndPerson" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupPartyAndUserLoginAndPerson" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -266,10 +266,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupUserLoginAndPartyDetails" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupUserLoginAndPartyDetails" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupUserLoginAndPartyDetails" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupUserLoginAndPartyDetails" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -290,10 +290,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -313,10 +313,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -345,7 +345,7 @@ under the License. <include-form name="LookupPartyClassificationGroup" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupPartyClassificationGroup" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupPartyClassificationGroup" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -391,10 +391,10 @@ under the License. <widgets> <decorator-screen name="LookupDecorator" location="component://common/widget/CommonScreens.xml"> <decorator-section name="search-options"> - <include-form name="lookupContactMech" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="LookupContactMech" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupContactMech" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupContactMech" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> @@ -421,7 +421,7 @@ under the License. <include-form name="LookupInternalOrganization" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupPartyGroup" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> Modified: ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml?rev=1761100&r1=1761099&r2=1761100&view=diff ============================================================================== --- ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml (original) +++ ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml Fri Sep 16 21:52:52 2016 @@ -21,7 +21,7 @@ under the License. <forms xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ofbiz.apache.org/Widget-Form" xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form http://ofbiz.apache.org/dtds/widget-form.xsd"> - <form name="lookupparty" type="single" target="findparty" focus-field-name="partyId"> + <form name="LookupParty" type="single" target="findparty" focus-field-name="partyId"> <actions> <set field="states" value="${groovy: org.apache.ofbiz.common.CommonWorkers.getStateList(delegator)}"/> <!-- Here is some alternate code to get states limited to a region @@ -360,7 +360,7 @@ under the License. <field name="cancelLink" title=" " widget-style="smallSubmit"><hyperlink target="backHome" also-hidden="false" description="${uiLabelMap.CommonCancelDone}"/></field> </form> - <form name="updatePassword" type="single" target="updatePassword" + <form name="UpdatePassword" type="single" target="updatePassword" focus-field-name="currentPassword" header-row-style="header-row" default-table-style="basic-table"> <actions> <set field="passwordHint" from-field="editUserLogin.passwordHint"/> @@ -379,7 +379,7 @@ under the License. </field> </form> - <form name="updateUserLoginSecurity" type="single" target="updateUserLoginSecurity" default-map-name="editUserLogin" + <form name="UpdateUserLoginSecurity" type="single" target="updateUserLoginSecurity" default-map-name="editUserLogin" header-row-style="header-row" default-table-style="basic-table"> <actions> <property-to-field field="ldapEnabled" resource="security" property="security.ldap.enable"/> @@ -1176,7 +1176,7 @@ under the License. <field name="amount"><display type="currency" currency="${paymentCurrencyUomId}"/></field> <field name="unAppliedAmount"><display type="currency" currency="${paymentCurrencyUomId}"/></field> </form> - <form name="partyFinancialSummary" type="single" title="Financial summary" default-map-name="finanSummary" + <form name="PartyFinancialSummary" type="single" title="Financial summary" default-map-name="finanSummary" default-title-style="tableheadtext"> <actions> <set field="actualCurrency" from-field="actualCurrency" default-value="true"/> @@ -1297,7 +1297,7 @@ under the License. <field name="partyId"><display/></field> </form> - <form name="listPartyIdentification" type="list" list-name="listIt" + <form name="ListPartyIdentification" type="list" list-name="listIt" default-table-style="basic-table hover-bar" target="updatePartyIdentification"> <actions> <entity-and entity-name="PartyIdentificationAndParty" > @@ -1317,7 +1317,7 @@ under the License. <field name="submit" title="${uiLabelMap.CommonUpdate}"><submit /></field> </form> - <form name="editPartyIdentification" type="single" list-name="partyIdents" + <form name="EditPartyIdentification" type="single" list-name="partyIdents" default-table-style="basic-table hover-bar" target="createPartyIdentification" focus-field-name="idValue"> <alt-target use-when="partyIdentification !=null" target="updatePartyIdentification"/> <field name="partyIdentificationTypeId" use-when="partyIdentification == null"> Modified: ofbiz/trunk/applications/party/widget/partymgr/PartyScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyScreens.xml?rev=1761100&r1=1761099&r2=1761100&view=diff ============================================================================== --- ofbiz/trunk/applications/party/widget/partymgr/PartyScreens.xml (original) +++ ofbiz/trunk/applications/party/widget/partymgr/PartyScreens.xml Fri Sep 16 21:52:52 2016 @@ -41,9 +41,9 @@ under the License. </condition> <widgets> <screenlet id="FindPartyPanel" title="${uiLabelMap.PartyFindParty}" navigation-menu-name="CreateNewParty" - navigation-form-name="lookupparty" save-collapsed="false" collapsible="true" initially-collapsed="${initialyCollapsed}"> + navigation-form-name="LookupParty" save-collapsed="false" collapsible="true" initially-collapsed="${initialyCollapsed}"> <include-menu location="component://party/widget/partymgr/PartyMenus.xml" name="CreateNewParty"/> - <include-form name="lookupparty" location="component://party/widget/partymgr/PartyForms.xml"/> + <include-form name="LookupParty" location="component://party/widget/partymgr/PartyForms.xml"/> </screenlet> <screenlet title="${uiLabelMap.CommonSearchResults}" navigation-form-name="ListParty"> <include-grid name="ListParty${extInfo}" location="component://party/widget/partymgr/PartyForms.xml"/> @@ -1042,8 +1042,8 @@ under the License. <set field="actualCurrencyUomId" from-field="defaultOrganizationPartyCurrencyUomId"/> </actions> <widgets> - <screenlet title="${uiLabelMap.PartyFinancialSummary}${defaultOrganizationPartyId}" navigation-form-name="partyFinancialSummary"> - <include-form name="partyFinancialSummary" location="component://party/widget/partymgr/PartyForms.xml"/> + <screenlet title="${uiLabelMap.PartyFinancialSummary}${defaultOrganizationPartyId}" navigation-form-name="PartyFinancialSummary"> + <include-form name="PartyFinancialSummary" location="component://party/widget/partymgr/PartyForms.xml"/> <section> <condition> <and> @@ -1057,7 +1057,7 @@ under the License. </actions> <widgets> <label style="h2" text="${uiLabelMap.PartyCurrency}"></label> - <include-form name="partyFinancialSummary" location="component://party/widget/partymgr/PartyForms.xml"/> + <include-form name="PartyFinancialSummary" location="component://party/widget/partymgr/PartyForms.xml"/> </widgets> </section> </screenlet> @@ -1227,11 +1227,11 @@ under the License. <decorator-screen name="CommonPartyDecorator" location="${parameters.mainDecoratorLocation}"> <decorator-section name="body"> <screenlet title="${uiLabelMap.PartyPartyIdentificationList}"> - <include-form name="listPartyIdentification" location="component://party/widget/partymgr/PartyForms.xml"/> + <include-form name="ListPartyIdentification" location="component://party/widget/partymgr/PartyForms.xml"/> </screenlet> <screenlet title="${uiLabelMap.PartyPartyIdentification}" navigation-menu-name="NewPartyIdentification" id="PartyIdentificationCreationPanel"> <include-menu name="NewPartyIdentification" location="component://party/widget/partymgr/PartyMenus.xml"/> - <include-form name="editPartyIdentification" location="component://party/widget/partymgr/PartyForms.xml"/> + <include-form name="EditPartyIdentification" location="component://party/widget/partymgr/PartyForms.xml"/> </screenlet> </decorator-section> </decorator-screen> Modified: ofbiz/trunk/applications/party/widget/partymgr/ProfileScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/ProfileScreens.xml?rev=1761100&r1=1761099&r2=1761100&view=diff ============================================================================== --- ofbiz/trunk/applications/party/widget/partymgr/ProfileScreens.xml (original) +++ ofbiz/trunk/applications/party/widget/partymgr/ProfileScreens.xml Fri Sep 16 21:52:52 2016 @@ -158,7 +158,7 @@ <widgets> <screenlet title="${uiLabelMap.PartyPartyIdentifications}" navigation-menu-name="NewPartyIdentification" id="PartyIdentificationPanel"> <include-menu name="NewPartyIdentification" location="component://party/widget/partymgr/PartyMenus.xml"/> - <include-form name="listPartyIdentification" location="component://party/widget/partymgr/PartyForms.xml"/> + <include-form name="ListPartyIdentification" location="component://party/widget/partymgr/PartyForms.xml"/> </screenlet> </widgets> </section> Modified: ofbiz/trunk/specialpurpose/assetmaint/widget/LookupScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/widget/LookupScreens.xml?rev=1761100&r1=1761099&r2=1761100&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/assetmaint/widget/LookupScreens.xml (original) +++ ofbiz/trunk/specialpurpose/assetmaint/widget/LookupScreens.xml Fri Sep 16 21:52:52 2016 @@ -42,7 +42,7 @@ <include-form name="lookupPerson" location="component://assetmaint/widget/forms/LookupForms.xml"/> </decorator-section> <decorator-section name="search-results"> - <include-form name="listLookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> + <include-form name="ListLookupPerson" location="component://party/widget/partymgr/LookupForms.xml"/> </decorator-section> </decorator-screen> </widgets> Modified: ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml?rev=1761100&r1=1761099&r2=1761100&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml (original) +++ ofbiz/trunk/specialpurpose/projectmgr/widget/forms/ProjectForms.xml Fri Sep 16 21:52:52 2016 @@ -966,7 +966,7 @@ <field name="task"><display description="${workEffortName}"/></field> </form> - <form name="FindMailingList" type="single" target="FindMailingList" extends="findCommEvents" extends-resource="component://party/widget/partymgr/CommunicationEventForms.xml"> + <form name="FindMailingList" type="single" target="FindMailingList" extends="FindCommEvents" extends-resource="component://party/widget/partymgr/CommunicationEventForms.xml"> <field name="projectId"><hidden/></field> <field name="entryDate"><date-find/></field> <field name="partyIdTo"><hidden/></field> Modified: ofbiz/trunk/specialpurpose/scrum/widget/scrumScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/widget/scrumScreens.xml?rev=1761100&r1=1761099&r2=1761100&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/scrum/widget/scrumScreens.xml (original) +++ ofbiz/trunk/specialpurpose/scrum/widget/scrumScreens.xml Fri Sep 16 21:52:52 2016 @@ -2486,7 +2486,7 @@ under the License. </fail-widgets> </section> <screenlet title="${uiLabelMap.PartyCommContent}"> - <include-form name="listCommContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> + <include-form name="ListCommContent" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> </screenlet> <section> <actions> @@ -2536,7 +2536,7 @@ under the License. <container> <label style="h2" text="${uiLabelMap.PartyEmailMessage}"/> </container> - <include-form name="allocateMsgToPartyForm" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> + <include-form name="AllocateMsgToPartyForm" location="component://party/widget/partymgr/CommunicationEventForms.xml"/> </screenlet> </widgets> </section> |
Free forum by Nabble | Edit this page |