Modified: ofbiz/trunk/specialpurpose/scrum/widget/OpenTestForms.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/widget/OpenTestForms.xml?rev=1768219&r1=1768218&r2=1768219&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/scrum/widget/OpenTestForms.xml (original) +++ ofbiz/trunk/specialpurpose/scrum/widget/OpenTestForms.xml Sat Nov 5 14:14:04 2016 @@ -33,7 +33,7 @@ <set field="partyId" from-field="partyAssignViewList[0].partyId"/> </row-actions> <field name="workEffortId" title="${uiLabelMap.ScrumTaskName}"> - <hyperlink target="editDefaultTask" description="${workEffortName}"> + <hyperlink description="${workEffortName}" target="editDefaultTask"> <parameter param-name="workEffortId"/> <parameter param-name="productId"/> </hyperlink></field> @@ -43,7 +43,7 @@ <display-entity entity-name="PartyNameView" description="${lastName} ${firstName} ${middleName}" key-field-name="partyId"/> </field> <field name="deleteButton" title="${uiLabelMap.CommonRemove}" widget-style="buttontext"> - <hyperlink target="deleteDefaultTask" description="${uiLabelMap.CommonRemove}"> + <hyperlink description="${uiLabelMap.CommonRemove}" target="deleteDefaultTask"> <parameter param-name="workEffortId"/> <parameter param-name="productId"/> </hyperlink> @@ -99,13 +99,13 @@ <entity-one entity-name="PartyNameView" value-field="party"/> </row-actions> <field name="workEffortId" title="Task Name"> - <hyperlink target="taskView" description="${workEffortName}"> + <hyperlink description="${workEffortName}" target="taskView"> <parameter param-name="taskId" from-field="workEffortId"/> </hyperlink> </field> <field name="description"><display/></field> <field name="partyId"> - <hyperlink target="viewprofile" description="${party.firstName} ${party.lastName}"> + <hyperlink description="${party.firstName} ${party.lastName}" target="viewprofile"> <parameter param-name="partyId"/> </hyperlink> </field> @@ -135,7 +135,7 @@ }"/> </row-actions> <field name="backlogName" title="${uiLabelMap.ScrumBacklogItem}"> - <hyperlink target="ViewProdBacklogItem" description="${description}[${custRequestId}]" target-window="_blank"> + <hyperlink description="${description}[${custRequestId}]" target="ViewProdBacklogItem" target-window="_blank"> <parameter param-name="custRequestId" from-field="custRequestId"/> <parameter param-name="productId" from-field="parameters.productId"/> </hyperlink> @@ -242,7 +242,7 @@ <set field="partyId" from-field="partyAssignViewList[0].partyId"/> </row-actions> <field name="workEffortId" title="${uiLabelMap.ScrumTaskName}"> - <hyperlink target="editDefaultTaskScrum" description="${workEffortName}"> + <hyperlink description="${workEffortName}" target="editDefaultTaskScrum"> <parameter param-name="workEffortId"/> </hyperlink></field> <field name="workEffortTypeId" title="${uiLabelMap.CommonType}"><display-entity entity-name="WorkEffortType"/></field> @@ -251,7 +251,7 @@ <display-entity entity-name="PartyNameView" description="${lastName} ${firstName} ${middleName}" key-field-name="partyId"/> </field> <field name="deleteButton" title="${uiLabelMap.CommonRemove}" widget-style="buttontext"> - <hyperlink target="deleteDefaultTaskScrum" description="${uiLabelMap.CommonRemove}"> + <hyperlink description="${uiLabelMap.CommonRemove}" target="deleteDefaultTaskScrum"> <parameter param-name="workEffortId"/> </hyperlink> </field> Modified: ofbiz/trunk/specialpurpose/scrum/widget/OpenTestScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/widget/OpenTestScreens.xml?rev=1768219&r1=1768218&r2=1768219&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/scrum/widget/OpenTestScreens.xml (original) +++ ofbiz/trunk/specialpurpose/scrum/widget/OpenTestScreens.xml Sat Nov 5 14:14:04 2016 @@ -41,7 +41,7 @@ under the License. <actions> <set field="titleProperty" value="PageTitleDefaultTasks"/> <set field="tabButtonItem" value="defaultTasks"/> - <entity-one value-field="product" entity-name="Product"/> + <entity-one entity-name="Product" value-field="product"/> </actions> <widgets> <decorator-screen name="CommonScrumProductDecorator" location="${parameters.mainDecoratorLocation}"> @@ -64,7 +64,7 @@ under the License. <set field="titleProperty" value="PageTitleEditDefaultTasks"/> <set field="tabButtonItem" value="defaultTasks"/> <set field="workEffortId" from-field="parameters.workEffortId"/> - <entity-one value-field="product" entity-name="Product"/> + <entity-one entity-name="Product" value-field="product"/> </actions> <widgets> <decorator-screen name="CommonScrumProductDecorator" location="${parameters.mainDecoratorLocation}"> Modified: ofbiz/trunk/specialpurpose/scrum/widget/ProjectForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/widget/ProjectForms.xml?rev=1768219&r1=1768218&r2=1768219&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/scrum/widget/ProjectForms.xml (original) +++ ofbiz/trunk/specialpurpose/scrum/widget/ProjectForms.xml Sat Nov 5 14:14:04 2016 @@ -38,7 +38,7 @@ <field name="partyId"><hidden/></field> <field use-when="workEffortId==projectId" name="workEffortId" entry-name="test" title="${uiLabelMap.ScrumProjectName}"><!-- project level --> <drop-down allow-empty="false"> - <entity-options entity-name="WorkEffort" description="${workEffortName}" key-field-name="workEffortId"> + <entity-options entity-name="WorkEffort" key-field-name="workEffortId" description="${workEffortName}"> <entity-constraint name="workEffortTypeId" value="SCRUM_PROJECT"/> <entity-constraint name="currentStatusId" operator="equals" value="SPJ_ACTIVE"/> <entity-order-by field-name="workEffortName"/> @@ -78,7 +78,7 @@ <field name="partyId"><hidden value="${parameters.partyId}"/></field> <field name="fromDate"><hidden/></field> <field entry-name="workEffortName" name="projectName" parameter-name="workEffortName" title="${uiLabelMap.CommonName}" widget-style="buttontext"> - <hyperlink target="viewScrumProject" description="${workEffortName}[${workEffortId}]"> + <hyperlink description="${workEffortName}[${workEffortId}]" target="viewScrumProject"> <parameter param-name="projectId" from-field="workEffortId"/> </hyperlink> </field> Modified: ofbiz/trunk/specialpurpose/scrum/widget/ResourceForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/widget/ResourceForms.xml?rev=1768219&r1=1768218&r2=1768219&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/scrum/widget/ResourceForms.xml (original) +++ ofbiz/trunk/specialpurpose/scrum/widget/ResourceForms.xml Sat Nov 5 14:14:04 2016 @@ -74,7 +74,7 @@ <set field="rateAmount" from-field="rateResult[0].rateAmount"/> </row-actions> <field name="lastName" parameter-name="partyId" title="${uiLabelMap.ScrumMember}" sort-field="true"> - <hyperlink also-hidden="false" description="${partyNameView.lastName}, ${partyNameView.firstName} ${partyNameView.middleName} - [${partyId}]" target="viewprofile" link-type="hidden-form"> + <hyperlink description="${partyNameView.lastName}, ${partyNameView.firstName} ${partyNameView.middleName} - [${partyId}]" target="viewprofile" also-hidden="false" link-type="hidden-form"> <parameter param-name="partyId"/> </hyperlink> </field> @@ -86,14 +86,14 @@ <field name="rateAmount" use-when="rateTypeId!=null"><display/></field> <field name="percentageUsed" use-when="rateTypeId!=null"><display/></field> <field name="update" title="${uiLabelMap.CommonUpdate}" widget-style="buttontext" use-when="rateTypeId!=null"> - <hyperlink target="QuickAddPartyRate" description="${uiLabelMap.CommonUpdate}" link-type="hidden-form"> + <hyperlink description="${uiLabelMap.CommonUpdate}" target="QuickAddPartyRate" link-type="hidden-form"> <parameter param-name="partyId"/> <parameter param-name="rateTypeId"/> <parameter param-name="fromDate"/> </hyperlink> </field> <field name="remove" title="${uiLabelMap.CommonRemove}" widget-style="buttontext"> - <hyperlink target="removeResource" description="${uiLabelMap.CommonRemove}" link-type="hidden-form" confirmation-message="Are you sure to delete this person ?"> + <hyperlink description="${uiLabelMap.CommonRemove}" target="removeResource" link-type="hidden-form" confirmation-message="Are you sure to delete this person ?"> <parameter param-name="partyId"/> <parameter param-name="groupId"/> <parameter param-name="userLoginId"/> @@ -200,14 +200,14 @@ <set field="parameters.workEffortTypeId" value="PROJECT"/> <set field="fieldList[]" value="workEffortId"/> <set field="fieldList[]" value="lastStatusUpdate"/> - <entity-condition list="contents" entity-name="ContentRole"> + <entity-condition entity-name="ContentRole" list="contents"> <condition-list> <condition-expr field-name="partyId" from-field="parameters.partyId"/> <condition-expr field-name="roleTypeId" value="OWNER"/> </condition-list> </entity-condition> <set field="contentIds" value="${groovy:return org.apache.ofbiz.entity.util.EntityUtil.getFieldListFromEntityList(contents, "contentId", true)}" type="List" /> - <entity-condition list="listIt" entity-name="WorkEffortAndContentDataResource"> + <entity-condition entity-name="WorkEffortAndContentDataResource" list="listIt"> <condition-list> <condition-expr field-name="contentName" operator="like" value="%${parameters.contentName}%" ignore-if-empty="true" ignore-case="true"/> <condition-expr field-name="description" operator="like" value="%${parameters.description}%" ignore-if-empty="true" ignore-case="true"/> @@ -366,7 +366,7 @@ <set field="compCheck" value="${groovy: if (roleTypeId=="PRODUCT_OWNER_COMP" || roleTypeId=="PRODUCT_OWNER") compCheck = true; else compCheck = false;}" type="Boolean"/> </row-actions> <field name="lastName" parameter-name="partyId" title="${uiLabelMap.ScrumMember}" sort-field="true"> - <hyperlink also-hidden="false" description="${partyNameView.lastName} ${partyNameView.middleName} ${partyNameView.firstName} ${partyNameView.groupName} - [${partyId}]" target="viewprofile" link-type="hidden-form"> + <hyperlink description="${partyNameView.lastName} ${partyNameView.middleName} ${partyNameView.firstName} ${partyNameView.groupName} - [${partyId}]" target="viewprofile" also-hidden="false" link-type="hidden-form"> <parameter param-name="partyId"/> </hyperlink> </field> @@ -377,7 +377,7 @@ <display type="date"/> </field> <field name="remove" title="${uiLabelMap.CommonRemove}" widget-style="buttontext" use-when="!compCheck"> - <hyperlink target="removeProductMember" description="${uiLabelMap.CommonRemove}" link-type="hidden-form"> + <hyperlink description="${uiLabelMap.CommonRemove}" target="removeProductMember" link-type="hidden-form"> <parameter param-name="productId" from-field="productId"/> <parameter param-name="partyId"/> <parameter param-name="roleTypeId"/> Modified: ofbiz/trunk/specialpurpose/scrum/widget/ResourceScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/widget/ResourceScreens.xml?rev=1768219&r1=1768218&r2=1768219&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/scrum/widget/ResourceScreens.xml (original) +++ ofbiz/trunk/specialpurpose/scrum/widget/ResourceScreens.xml Sat Nov 5 14:14:04 2016 @@ -272,14 +272,14 @@ under the License. <set field="title" value="${uiLabelMap.ScrumRevisions}"/> <set field="parameters.custRequestId" from-field="custRequestWorkEffort[0].custRequestId"/> <set field="parameters.noConditionFind" value="Y"/> - <entity-condition list="contents" entity-name="ContentRole"> + <entity-condition entity-name="ContentRole" list="contents"> <condition-list> <condition-expr field-name="partyId" from-field="parameters.partyId"/> <condition-expr field-name="roleTypeId" value="OWNER"/> </condition-list> </entity-condition> <set field="contentIds" value="${groovy:return org.apache.ofbiz.entity.util.EntityUtil.getFieldListFromEntityList(contents, "contentId", true)}" type="List" /> - <entity-condition list="listIt" entity-name="WorkEffortAndContentDataResource"> + <entity-condition entity-name="WorkEffortAndContentDataResource" list="listIt"> <condition-list> <condition-expr field-name="workEffortContentTypeId" value="TASK_SUB_INFO"/> <condition-expr field-name="contentId" operator="in" from-field="contentIds"/> @@ -403,7 +403,7 @@ under the License. <set field="titleProperty" value="PageTitleScrumProductMembers"/> <set field="productId" from-field="parameters.productId"/> <set field="tabButtonItem" value="productMember"/> - <entity-one value-field="product" entity-name="Product"/> + <entity-one entity-name="Product" value-field="product"/> <script location="component://scrum/groovyScripts/ListScrumRolesPersonAndCompany.groovy"/> </actions> <widgets> Modified: ofbiz/trunk/specialpurpose/scrum/widget/TaskForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/widget/TaskForms.xml?rev=1768219&r1=1768218&r2=1768219&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/scrum/widget/TaskForms.xml (original) +++ ofbiz/trunk/specialpurpose/scrum/widget/TaskForms.xml Sat Nov 5 14:14:04 2016 @@ -220,29 +220,29 @@ <field name="workEffortName" title="${uiLabelMap.ScrumTaskName}"><display description="${resultTask.workEffortName}"/></field> <field name="workEffortTypeId" title="${uiLabelMap.ScrumTaskType}" ><display description="${workEffortType.description}"/></field> <field name="custRequestId" title="${uiLabelMap.ScrumProductBacklog}"> - <hyperlink target="ViewProdBacklogItem" description="${custRequest.description} [${custRequest.custRequestId}]"> + <hyperlink description="${custRequest.description} [${custRequest.custRequestId}]" target="ViewProdBacklogItem"> <parameter param-name="custRequestId" from-field="custRequest.custRequestId"/> <parameter param-name="productId" from-field="productId"/> </hyperlink> </field> <field name="sprintName" title="${uiLabelMap.ScrumSprint}" use-when="sprintId!=null"> - <hyperlink target="ViewSprint" description="${sprintName} [${sprintId}]"> + <hyperlink description="${sprintName} [${sprintId}]" target="ViewSprint"> <parameter param-name="projectId" from-field="projectId"/> <parameter param-name="sprintId" from-field="sprintId"/> </hyperlink> </field> <field name="projectName" title="${uiLabelMap.ScrumProject}" use-when="projectId!=null"> - <hyperlink target="viewScrumProject" description="${projectName} [${projectId}]"> + <hyperlink description="${projectName} [${projectId}]" target="viewScrumProject"> <parameter param-name="projectId"/> </hyperlink> </field> <field name="productId" title="${uiLabelMap.PageTitleProduct}"> - <hyperlink target="ViewProduct" description="${product.internalName} [${productId}]"> + <hyperlink description="${product.internalName} [${productId}]" target="ViewProduct"> <parameter param-name="productId" from-field="productId"/> </hyperlink> </field> <field name="groupName" title="${uiLabelMap.ScrumCompany}"> - <hyperlink target="viewprofile" description="${companyList[0].groupName}"> + <hyperlink description="${companyList[0].groupName}" target="viewprofile"> <parameter param-name="partyId" from-field="companyList[0].partyId"/> </hyperlink> </field> @@ -592,7 +592,7 @@ </entity-condition> </actions> <field name="partyId" title="${uiLabelMap.CommonName}"> - <hyperlink target="viewprofile" description="${lastName} ${firstName}"> + <hyperlink description="${lastName} ${firstName}" target="viewprofile"> <parameter param-name="partyId"/> </hyperlink> </field> @@ -627,7 +627,7 @@ </row-actions> <field name="workEffortId"><hidden/></field> <field name="taskName" title="${uiLabelMap.ScrumTaskName}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${taskName} - [${taskId}] " target="taskView"> + <hyperlink description="${taskName} - [${taskId}] " target="taskView" also-hidden="false"> <parameter param-name="taskId" from-field="workEffortId"/> </hyperlink> </field> @@ -647,7 +647,7 @@ </field> <field name="UpdateButton" title="${uiLabelMap.CommonUpdate}"><submit/></field> <field name="RemoveButton" title="${uiLabelMap.CommonRemove}" widget-style="buttontext"> - <hyperlink target="unassignPartyFromWorkEffort" description="${uiLabelMap.CommonRemove}" confirmation-message="Are you sure to remove this task ?" link-type="hidden-form"> + <hyperlink description="${uiLabelMap.CommonRemove}" target="unassignPartyFromWorkEffort" confirmation-message="Are you sure to remove this task ?" link-type="hidden-form"> <parameter param-name="workEffortId" from-field="taskId"/> <parameter param-name="partyId" from-field="partyId"/> <parameter param-name="roleTypeId" from-field="roleTypeId"/> @@ -703,7 +703,7 @@ </display-entity> </field> <field name="sprintId" use-when="sprintId==null"> - <hyperlink target="unplanBacklog" description="${uiLabelMap.ScrumUnplanSprint}"> + <hyperlink description="${uiLabelMap.ScrumUnplanSprint}" target="unplanBacklog"> <parameter param-name="productId" from-field="productId"/> </hyperlink> </field> @@ -736,13 +736,13 @@ <field name="taskActualMilliSeconds" title="${uiLabelMap.ScrumActualHours}" parameter-name="actualHours"><display description="${result.actualHours}"/></field> <field name="taskEstimatedStartDate" title="${uiLabelMap.CommonStartDate}" parameter-name="estimatedStartDate"><display type="date"/></field> <field name="editButton" title=" " widget-style="buttontext"> - <hyperlink target="EditTask" description="${uiLabelMap.CommonEdit}" link-type="hidden-form"> + <hyperlink description="${uiLabelMap.CommonEdit}" target="EditTask" link-type="hidden-form"> <parameter param-name="taskId"/> <parameter param-name="sprintId"></parameter> </hyperlink> </field> <field name="deleteButton" title=" " widget-style="buttontext"> - <hyperlink target="deleteTask" description="${uiLabelMap.CommonDelete}" link-type="hidden-form" confirmation-message="Are you sure to delete this task?"> + <hyperlink description="${uiLabelMap.CommonDelete}" target="deleteTask" link-type="hidden-form" confirmation-message="Are you sure to delete this task?"> <parameter param-name="custRequestId"/> <parameter param-name="workEffortId" from-field="taskId"/> </hyperlink> @@ -832,7 +832,7 @@ <property-to-field resource="revision" property="revision.url" field="url"/> </row-actions> <field name="contentName" title="${uiLabelMap.ScrumRevision}" widget-style="buttontext"> - <hyperlink target="RevisionInfo?repository=${url}${drObjectInfo}" description="${contentName}" link-type="anchor" target-window="_BLANK" target-type="plain"/> + <hyperlink description="${contentName}" target="RevisionInfo?repository=${url}${drObjectInfo}" link-type="anchor" target-window="_BLANK" target-type="plain"/> </field> <field name="description" title="${uiLabelMap.CommonMessage}"><display description="${groovy:description.toString().substring(0,Math.min(description.toString().length(),100))}"/></field> <field name="partyId" title="${uiLabelMap.ScrumCommitter}"> @@ -946,7 +946,7 @@ <field name="sprintId"><hidden value="${parameters.sprintId}"/></field> <field name="partyId"><hidden/></field> <field name="memberName" title="${uiLabelMap.ScrumMembersName}"> - <hyperlink target="viewprofile" description="${lastName} ${firstName} ${middleName} [${partyId}]"> + <hyperlink description="${lastName} ${firstName} ${middleName} [${partyId}]" target="viewprofile"> <parameter param-name="partyId"/> </hyperlink> </field> Modified: ofbiz/trunk/specialpurpose/scrum/widget/TaskScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/widget/TaskScreens.xml?rev=1768219&r1=1768218&r2=1768219&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/scrum/widget/TaskScreens.xml (original) +++ ofbiz/trunk/specialpurpose/scrum/widget/TaskScreens.xml Sat Nov 5 14:14:04 2016 @@ -281,7 +281,7 @@ under the License. <field-map field-name="workEffortId" from-field="parameters.taskId"/> </entity-and> <set field="partyId" from-field="assignTo[0].partyId"/> - <entity-one value-field="person" entity-name="Person"/> + <entity-one entity-name="Person" value-field="person"/> <entity-condition list="SprintTasks" entity-name="ProjectSprintBacklogAndTask"> <condition-list combine="and"> <condition-expr field-name="projectId" from-field="parameters.projectId"/> @@ -325,7 +325,7 @@ under the License. <field-map field-name="custRequestId" from-field="custRequestId"/> </entity-and> <set field="sprintId" from-field="parameters.sprintId"/> - <entity-one value-field="sprint" entity-name="WorkEffort"> + <entity-one entity-name="WorkEffort" value-field="sprint"> <field-map field-name="workEffortId" from-field="sprintId"/> </entity-one> </actions> @@ -381,7 +381,7 @@ under the License. <actions> <set field="workEffortId" from-field="parameters.taskId"/> <set field="taskId" from-field="parameters.taskId"/> - <entity-condition list="workNoteList" entity-name="WorkEffortNote" > + <entity-condition entity-name="WorkEffortNote" list="workNoteList" > <condition-expr field-name="workEffortId" from-field="workEffortId"/> <order-by field-name="-noteId"/> <limit-range start="0" size="5"/> @@ -410,7 +410,7 @@ under the License. <screen name="ViewTask"> <section> <actions> - <entity-one value-field="task" entity-name="WorkEffort"/> + <entity-one entity-name="WorkEffort" value-field="task"/> </actions> <widgets> <include-screen name="taskInfo"/> @@ -420,7 +420,7 @@ under the License. <screen name="InfoTestTaskNote"> <section> <actions> - <entity-one value-field="task" entity-name="WorkEffort"/> + <entity-one entity-name="WorkEffort" value-field="task"/> <set field="taskId" from-field="task.workEffortId"/> </actions> <widgets> Modified: ofbiz/trunk/specialpurpose/scrum/widget/TimeSheetForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/widget/TimeSheetForms.xml?rev=1768219&r1=1768218&r2=1768219&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/scrum/widget/TimeSheetForms.xml (original) +++ ofbiz/trunk/specialpurpose/scrum/widget/TimeSheetForms.xml Sat Nov 5 14:14:04 2016 @@ -64,7 +64,7 @@ <set field="completeLink" value="${groovy:"TIMESHEET_IN_PROCESS".equals(statusId)?complete:""}"/> </row-actions> <field name="timesheetId" title="${uiLabelMap.WorkEffortTimesheetTimesheetId}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${timesheetId}" target="ViewTimeSheet"> + <hyperlink description="${timesheetId}" target="ViewTimeSheet" also-hidden="false"> <parameter param-name="timesheetId"/> </hyperlink> </field> @@ -75,13 +75,13 @@ <field name="thruDate" title="${uiLabelMap.CommonThruDate}"><display type="date"/></field> <!--field name="comments" title="${uiLabelMap.CommonComments}"><display/></field--> <field name="completeLink" title="${uiLabelMap.CommonStatustoComplete}" widget-style="buttontext"> - <hyperlink target="TimeSheetStatusToComplete" description="${groovy:statusId.equals("TIMESHEET_IN_PROCESS")?complete:""}"> + <hyperlink description="${groovy:statusId.equals("TIMESHEET_IN_PROCESS")?complete:""}" target="TimeSheetStatusToComplete"> <parameter param-name="timesheetId"/> <parameter param-name="statusId" value="TIMESHEET_COMPLETED"/> </hyperlink> </field> <field name="inProcessLink" title="${uiLabelMap.StatusToInProcess}" widget-style="buttontext"> - <hyperlink target="updateTimesheetToInProcess" description="${groovy:statusId.equals("TIMESHEET_COMPLETED")?inProcess:""}" > + <hyperlink description="${groovy:statusId.equals("TIMESHEET_COMPLETED")?inProcess:""}" target="updateTimesheetToInProcess" > <parameter param-name="timesheetId"/> <parameter param-name="statusId" value="TIMESHEET_IN_PROCESS"/> </hyperlink> @@ -93,7 +93,7 @@ <set field="complete" value="${uiLabelMap.ScrumToComplete}"/> </actions> <field name="timesheetId" title="${uiLabelMap.WorkEffortTimesheetTimesheetId}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${timesheetId}" target="${my}Timesheet"> + <hyperlink description="${timesheetId}" target="${my}Timesheet" also-hidden="false"> <parameter param-name="timesheetId"/> </hyperlink> </field> @@ -104,7 +104,7 @@ <field name="hours"><display/></field> <field name="comments" title="${uiLabelMap.CommonComments}"><display/></field> <field name="completeLink" title="${uiLabelMap.CommonStatustoComplete}" widget-style="buttontext"> - <hyperlink target="TimeSheetStatusToComplete" description="${groovy:statusId.equals("TIMESHEET_IN_PROCESS")?complete:""}" also-hidden="false"> + <hyperlink description="${groovy:statusId.equals("TIMESHEET_IN_PROCESS")?complete:""}" target="TimeSheetStatusToComplete" also-hidden="false"> <parameter param-name="timesheetId"/> <parameter param-name="statusId" value="TIMESHEET_COMPLETED"/> </hyperlink> Modified: ofbiz/trunk/specialpurpose/scrum/widget/TimeSheetScreens.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/widget/TimeSheetScreens.xml?rev=1768219&r1=1768218&r2=1768219&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/scrum/widget/TimeSheetScreens.xml (original) +++ ofbiz/trunk/specialpurpose/scrum/widget/TimeSheetScreens.xml Sat Nov 5 14:14:04 2016 @@ -54,7 +54,7 @@ under the License. <set field="headerItem" value="timesheet"/> <set field="tabButtonItem" value="timesheets"/> <script location="component://scrum/groovyScripts/EditDailyHourReport.groovy"/> - <entity-one value-field="partyNameViewMap" entity-name="PartyNameView"> + <entity-one entity-name="PartyNameView" value-field="partyNameViewMap"> <field-map field-name="partyId" from-field="timesheet.partyId"/> </entity-one> </actions> Modified: ofbiz/trunk/specialpurpose/scrum/widget/scrumForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/scrum/widget/scrumForms.xml?rev=1768219&r1=1768218&r2=1768219&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/scrum/widget/scrumForms.xml (original) +++ ofbiz/trunk/specialpurpose/scrum/widget/scrumForms.xml Sat Nov 5 14:14:04 2016 @@ -41,7 +41,7 @@ under the License. <field name="projectId"><hidden value="${parameters.projectId}"/></field> <field name="workEffortId"><hidden value="${workEffortId}"/></field> <field name="workEffortName" title="Sprint Name"> - <hyperlink target="ViewSprint" description="${workEffortName}"> + <hyperlink description="${workEffortName}" target="ViewSprint"> <parameter param-name="sprintId" from-field="workEffortId"/> <parameter param-name="projectId" from-field="projectWorkEffort.workEffortId"/> </hyperlink> @@ -75,7 +75,7 @@ under the License. <field-map field-name="workEffortId" from-field="parameters.projectId"/> </entity-and> <set field="productId" from-field="projectList[0].productId"/> - <entity-condition list="custRequestAndCustRequestItem" entity-name="CustRequestAndCustRequestItem"> + <entity-condition entity-name="CustRequestAndCustRequestItem" list="custRequestAndCustRequestItem"> <condition-list combine="and"> <condition-expr field-name="custRequestTypeId" value="RF_PROD_BACKLOG" /> <condition-expr field-name="statusId" value="CRQ_ACCEPTED" /> @@ -86,7 +86,7 @@ under the License. </actions> <field name="custRequestId"><hidden/></field> <field name="description" title="${uiLabelMap.ScrumProductBacklogName}"> - <hyperlink target="ViewProdBacklogItem" description="${context.description} - [${custRequestId}]"> + <hyperlink description="${context.description} - [${custRequestId}]" target="ViewProdBacklogItem"> <parameter param-name="custRequestId"/> <parameter param-name="productId"/> </hyperlink> @@ -187,14 +187,14 @@ under the License. <field name="planHours" title="${uiLabelMap.ScrumPlannedHours}" position="2" use-when="!"SCRUM_SPRINT".equals(taskTypeId)"><display></display> </field> <field name="deleteButton" title=" " position="1" use-when="showPosition1&&!"CRQ_COMPLETED".equals("${custRequest.statusId}")" widget-style="buttontext"> - <hyperlink target="DeleteSprintBackLogs" description="Delete" confirmation-message="Are you sure to delete this sprint backlog ?" link-type="hidden-form"> + <hyperlink description="Delete" target="DeleteSprintBackLogs" confirmation-message="Are you sure to delete this sprint backlog ?" link-type="hidden-form"> <parameter param-name="custRequestId"/> <parameter param-name="sprintId"/> <parameter param-name="projectId"/> </hyperlink> </field> <field name="newTask" title=" " position="1" use-when="showPosition1&&!"CRQ_COMPLETED".equals("${custRequest.statusId}")" widget-style="buttontext"> - <hyperlink target="NewSprintBacklogTask" description="Add Task" link-type="hidden-form"> + <hyperlink description="Add Task" target="NewSprintBacklogTask" link-type="hidden-form"> <parameter param-name="custRequestId"/> <parameter param-name="sprintId"/> <parameter param-name="projectId"/> @@ -205,13 +205,13 @@ under the License. <display-entity entity-name="PartyNameView" description="${lastName}, ${firstName} ${middleName}" key-field-name="partyId"/> </field> <field name="editTaskParty" title=" " position="2" use-when="!"STS_COMPLETED".equals(taskCurrentStatusId)&&!"SCRUM_SPRINT".equals(taskTypeId)" widget-style="buttontext"> - <hyperlink target="EditTask" description="${uiLabelMap.CommonEdit}" link-type="hidden-form" target-window="_BLANK"> + <hyperlink description="${uiLabelMap.CommonEdit}" target="EditTask" link-type="hidden-form" target-window="_BLANK"> <parameter param-name="taskId"/> <parameter param-name="sprintId"></parameter> </hyperlink> </field> <field name="deleteTaskButton" title=" " position="2" use-when="!"STS_COMPLETED".equals(taskCurrentStatusId)&&!"SCRUM_SPRINT".equals(taskTypeId)" widget-style="buttontext"> - <hyperlink target="DeleteTaskFromSprintOverview" description="Delete" confirmation-message="Are you sure to delete this task ?" link-type="hidden-form"> + <hyperlink description="Delete" target="DeleteTaskFromSprintOverview" confirmation-message="Are you sure to delete this task ?" link-type="hidden-form"> <parameter param-name="workEffortId" from-field="taskId"/> <parameter param-name="custRequestId"/> <parameter param-name="sprintId"/> @@ -220,7 +220,7 @@ under the License. </field> <field name="setCompleteButton" title=" " widget-style="buttontext" use-when="!"STS_COMPLETED".equals(taskCurrentStatusId)&&!"SCRUM_SPRINT".equals(taskTypeId)" position="2"> - <hyperlink target="setCompleteTask" description="${uiLabelMap.ScrumSetComplete}" link-type="hidden-form"> + <hyperlink description="${uiLabelMap.ScrumSetComplete}" target="setCompleteTask" link-type="hidden-form"> <parameter param-name="workEffortId" from-field="taskId"/> <parameter param-name="sprintId"></parameter> </hyperlink> @@ -280,12 +280,12 @@ under the License. <set field="actualCompletionDate" from-field="sprint.actualCompletionDate" type="Timestamp"/> </actions> <field name="productId" title="${uiLabelMap.ScrumProductName}"> - <hyperlink target="ViewProduct" description="${resultProduct.internalName} [${resultProduct.productId}]"> + <hyperlink description="${resultProduct.internalName} [${resultProduct.productId}]" target="ViewProduct"> <parameter param-name="productId" from-field="resultProduct.productId"/> </hyperlink> </field> <field name="projectId" title="${uiLabelMap.ScrumProjectName}"> - <hyperlink target="viewScrumProject" description="${project.workEffortName} [${project.workEffortId}]"> + <hyperlink description="${project.workEffortName} [${project.workEffortId}]" target="viewScrumProject"> <parameter param-name="projectId" from-field="parameters.projectId"/> </hyperlink> </field> @@ -337,7 +337,7 @@ under the License. <field name="statusId" title="${uiLabelMap.CommonStatus}"> <drop-down> <entity-options entity-name="StatusItem"> - <entity-constraint name="statusTypeId" value="SPRINT_STATUS" operator="equals"/> + <entity-constraint name="statusTypeId" operator="equals" value="SPRINT_STATUS"/> </entity-options> </drop-down> </field> @@ -442,7 +442,7 @@ under the License. <field name="sprintId"> <hidden value="${parameters.sprintId}"/></field> <field name="partyId"><hidden/></field> <field name="workEffortId"><hidden value="${parameters.sprintId}"/></field> - <field name="memberName" title="${uiLabelMap.ScrumMembersName}"><hyperlink target="viewprofile" description="${lastName}, ${firstName} ${middleName} [${partyId}]"><parameter param-name="partyId"/></hyperlink></field> + <field name="memberName" title="${uiLabelMap.ScrumMembersName}"><hyperlink description="${lastName}, ${firstName} ${middleName} [${partyId}]" target="viewprofile"><parameter param-name="partyId"/></hyperlink></field> <field name="roleTypeId"> <display-entity entity-name="RoleType"/> </field> @@ -463,7 +463,7 @@ under the License. <form name="EditScrumProject" default-map-name="workEffort" target="updateScrumProject" title="" type="single"> <actions> - <entity-one value-field="workEffortAttMap" entity-name="WorkEffortAttribute"> + <entity-one entity-name="WorkEffortAttribute" value-field="workEffortAttMap"> <field-map field-name="workEffortId" from-field="workEffortId"/> <field-map field-name="attrName" value="PROJECT_BILLED"/> </entity-one> @@ -543,7 +543,7 @@ under the License. <field-map field-name="roleTypeId" value="PRODUCT_OWNER"/> </entity-and> <set field="partyMap.productOwnerId" from-field="productRoleList[0].partyId"/> - <entity-one value-field="workEffortAttMap" entity-name="WorkEffortAttribute"> + <entity-one entity-name="WorkEffortAttribute" value-field="workEffortAttMap"> <field-map field-name="workEffortId" from-field="parameters.projectId"/> <field-map field-name="attrName" value="PROJECT_BILLED"/> </entity-one> @@ -597,7 +597,7 @@ under the License. <set field="sprintName" from-field="workEffort.workEffortName"/> <set field="projectId" from-field="workEffort.workEffortParentId"/> <set field="noteInfo" from-field="custRequestNotes[0].noteInfo"/> - <entity-one value-field="workEffortAttMap" entity-name="WorkEffortAttribute"> + <entity-one entity-name="WorkEffortAttribute" value-field="workEffortAttMap"> <field-map field-name="workEffortId" from-field="projectId"/> <field-map field-name="attrName" value="PROJECT_BILLED"/> </entity-one> @@ -738,7 +738,7 @@ under the License. <display description="${request[0].lastName} ${request[0].firstName} ${request[0].middleName}"/> </field> <field name="Sprint" title="${uiLabelMap.ScrumSprintName}" use-when="sprintName!=null"> - <hyperlink target="ViewSprint" description="${sprintName} [${workEffortlist[0].workEffortId}]"> + <hyperlink description="${sprintName} [${workEffortlist[0].workEffortId}]" target="ViewSprint"> <parameter param-name="prjectId" from-field="projectId"/> <parameter param-name="sprintId" from-field="workEffortlist[0].workEffortId"/> </hyperlink> @@ -993,7 +993,7 @@ under the License. </field> <field name="custSequenceNum" position="2" title="${uiLabelMap.ScrumSeq}"><display/></field> <field name="custRequestId" position="2" title="${uiLabelMap.ScrumProductBacklogItem}"> - <hyperlink target="ViewProdBacklogItem" description="${description} [${custRequestId}]"> + <hyperlink description="${description} [${custRequestId}]" target="ViewProdBacklogItem"> <parameter param-name="custRequestId"/> <parameter param-name="productId"/> </hyperlink> @@ -1108,7 +1108,7 @@ under the License. <field name="realSequenceNum"><hidden/></field> <field name="custRequestId"><hidden/></field> <field name="backlogId" position="1" title="${uiLabelMap.ScrumBacklogId}"> - <hyperlink target="ViewProdBacklogItem" description="${custRequestId}"> + <hyperlink description="${custRequestId}" target="ViewProdBacklogItem"> <parameter param-name="custRequestId"/> <parameter param-name="productId"/> </hyperlink> @@ -1133,7 +1133,7 @@ under the License. </field> <field name="setToReview" widget-style="buttontext" title="${uiLabelMap.ScrumMoveToUnplannedSprint}"><hidden/></field> <field name="deleteFlag" position="1" title="${uiLabelMap.CommonDelete}" widget-style="buttontext"> - <hyperlink target="DeleteProductBacklogItem" description="${uiLabelMap.CommonDelete}"> + <hyperlink description="${uiLabelMap.CommonDelete}" target="DeleteProductBacklogItem"> <parameter param-name="productId" from-field="parameters.productId"/> <parameter param-name="custRequestId" from-field="custRequestId"/> <parameter param-name="statusId" from-field="parameters.statusId"/> @@ -1199,12 +1199,12 @@ under the License. </entity-one> </row-actions> <field name="companyId" title="${uiLabelMap.ScrumOwnerCompany}" position="1" use-when="!isCurrentCompany" widget-style="buttontext"> - <hyperlink target="viewprofile" description="${companyName} [${companyId}]"> + <hyperlink description="${companyName} [${companyId}]" target="viewprofile"> <parameter param-name="partyId" from-field="companyId"/> </hyperlink> </field> <field name="projectName" title="${uiLabelMap.ScrumProject}" position="1" use-when="!isCurrentProject" widget-style="buttontext"> - <hyperlink target="viewScrumProject" description="${projectName} [${projectId}]"> + <hyperlink description="${projectName} [${projectId}]" target="viewScrumProject"> <parameter param-name="projectId"/> </hyperlink> </field> @@ -1216,13 +1216,13 @@ under the License. </display-entity> </field> <field name="productOwnerName" title="${uiLabelMap.ScrumProductOwner}" position="1" use-when="!isCurrentProject"> - <hyperlink target="viewprofile" description="${productOwnerName} [${productOwnerId}]"> + <hyperlink description="${productOwnerName} [${productOwnerId}]" target="viewprofile"> <parameter param-name="partyId" from-field="productOwnerId"/> </hyperlink> </field> <field name="dummy" title=" " position="2" use-when=""${sprintId}"!="""><display description=" "/></field> <field name="sprintName" title="${uiLabelMap.ScrumTab} ${uiLabelMap.ScrumSprint}" position="2" use-when=""${sprintId}"!="""> - <hyperlink target="ViewSprint" description="${uiLabelMap.ScrumTab} ${sprintName} [${sprintId}]"> + <hyperlink description="${uiLabelMap.ScrumTab} ${sprintName} [${sprintId}]" target="ViewSprint"> <parameter param-name="projectId"/> <parameter param-name="sprintId"/> </hyperlink> @@ -1289,12 +1289,12 @@ under the License. </row-actions> <field name="projectName" title="${uiLabelMap.ScrumProject}" position="1" use-when="!isCurrentProject"> - <hyperlink target="viewScrumProject" description="${projectName} [${projectId}]"> + <hyperlink description="${projectName} [${projectId}]" target="viewScrumProject"> <parameter param-name="projectId" from-field="workEffortId"/> </hyperlink> </field> <field name="sprintName" title="${uiLabelMap.ScrumTab} ${uiLabelMap.ScrumSprint}" position="2" use-when=""${sprintId}"!="""> - <hyperlink target="ViewSprint" description="${uiLabelMap.ScrumTab} ${sprintName} [${sprintId}]"> + <hyperlink description="${uiLabelMap.ScrumTab} ${sprintName} [${sprintId}]" target="ViewSprint"> <parameter param-name="projectId"/> <parameter param-name="sprintId"/> </hyperlink> @@ -1324,7 +1324,7 @@ under the License. </actions> <field name="projectId"><hidden value="${parameters.projectId}"/></field> <field name="workEffortName" title="${uiLabelMap.ScrumSprintName}"> - <hyperlink target="ViewSprint" description="${workEffortName} [${workEffortId}]"> + <hyperlink description="${workEffortName} [${workEffortId}]" target="ViewSprint"> <parameter param-name="sprintId" from-field="workEffortId"/> <parameter param-name="projectId" from-field="project.workEffortId"/> </hyperlink> @@ -1424,7 +1424,7 @@ under the License. <field-map field-name="workEffortId" from-field="parameters.projectId"/> </entity-and> <set field="productId" from-field="projectList[0].productId"/> - <entity-condition list="productBacklog" entity-name="CustRequestAndCustRequestItem"> + <entity-condition entity-name="CustRequestAndCustRequestItem" list="productBacklog"> <condition-list combine="and"> <condition-expr field-name="custRequestTypeId" value="RF_PROD_BACKLOG" /> <condition-expr field-name="statusId" value="CRQ_ACCEPTED" /> @@ -1538,7 +1538,7 @@ under the License. <set field="statusMap.statusId" value="${groovy: if(supportDiscontinuationDate == null) return 'PRODUCT_ACTIVE' else return 'PRODUCT_CLOSED'}"/> </actions> <field name="productOwerId" title="${uiLabelMap.ScrumCompanyAndProductOwner}"> - <hyperlink target="viewprofile" description="${parties[0].groupName} -- ${parties[0].lastName} ${parties[0].firstName} ${parties[0].middleName}"> + <hyperlink description="${parties[0].groupName} -- ${parties[0].lastName} ${parties[0].firstName} ${parties[0].middleName}" target="viewprofile"> <parameter param-name="partyId" from-field="productRole[0].partyId"/> </hyperlink> </field> @@ -1791,12 +1791,12 @@ under the License. <set field="billed" from-field="backlogItem.billed"/> </row-actions> <field name="projectId" position="1" use-when="${groovy:showPosition1==true}" title="${uiLabelMap.ScrumProject}"> - <hyperlink target="viewScrumProject" description="${projectName}"> + <hyperlink description="${projectName}" target="viewScrumProject"> <parameter param-name="projectId"/> </hyperlink> </field> <field name="sprintId" position="1" use-when="${groovy:showPosition1==true}" title="${uiLabelMap.ScrumSprint}"> - <hyperlink target="ViewSprint" description="${sprintName}"> + <hyperlink description="${sprintName}" target="ViewSprint"> <parameter param-name="projectId"/> <parameter param-name="sprintId"/> </hyperlink> @@ -1960,7 +1960,7 @@ under the License. <display description="${categoryList[0].custRequestName} [${categoryList[0].custRequestId}]"/> </field> <field name="Sprint" title="${uiLabelMap.ScrumSprintName}" use-when="sprintName!=null"> - <hyperlink target="ViewSprint" description="${sprintName} [${productBacklogs[0].workEffortId}]"> + <hyperlink description="${sprintName} [${productBacklogs[0].workEffortId}]" target="ViewSprint"> <parameter param-name="prjectId" from-field="projectId"/> <parameter param-name="sprintId" from-field="workEffortlist[0].workEffortId"/> </hyperlink> @@ -1990,7 +1990,7 @@ under the License. </row-actions> <field name="custSequenceNum" position="2" title="${uiLabelMap.ScrumSeq}"><display/></field> <field name="custRequestId" position="2" title="${uiLabelMap.ScrumProductBacklogItem}"> - <hyperlink target="ViewProdBacklogItem" description="${description} [${custRequestId}]"> + <hyperlink description="${description} [${custRequestId}]" target="ViewProdBacklogItem"> <parameter param-name="custRequestId"/> <parameter param-name="productId"/> </hyperlink> @@ -2030,7 +2030,7 @@ under the License. </field> <field name="custSequenceNum" position="2" title="${uiLabelMap.ScrumSeq}"><display/></field> <field name="custRequestId" position="2" title="${uiLabelMap.ScrumProductBacklogItem}"> - <hyperlink target="ViewProdBacklogItem" description="${description} [${custRequestId}]"> + <hyperlink description="${description} [${custRequestId}]" target="ViewProdBacklogItem"> <parameter param-name="custRequestId"/> <parameter param-name="productId"/> </hyperlink> @@ -2111,7 +2111,7 @@ under the License. </row-actions> <field name="sprintId"><hidden value="${parameters.sprintId}"/></field> <field name="taskId" title="${uiLabelMap.ScrumTask}" parameter-name="workEffortId"> - <hyperlink target="SprintTaskView" description="${taskName} [${taskId}]"> + <hyperlink description="${taskName} [${taskId}]" target="SprintTaskView"> <parameter param-name="sprintId"/> <parameter param-name="taskId"/> </hyperlink> @@ -2139,13 +2139,13 @@ under the License. <field name="taskActualMilliSeconds" title="${uiLabelMap.ScrumActualHours}" parameter-name="actualHours"><display/></field> <field name="updateButton" title="${uiLabelMap.CommonUpdate}"><submit button-type="button" /></field> <field name="editButton" title=" " widget-style="buttontext"> - <hyperlink target="EditSprintTask" description="${uiLabelMap.CommonEdit}" link-type="hidden-form"> + <hyperlink description="${uiLabelMap.CommonEdit}" target="EditSprintTask" link-type="hidden-form"> <parameter param-name="sprintId" from-field="parameters.parameters.sprintId"/> <parameter param-name="taskId"/> </hyperlink> </field> <field name="deleteButton" title=" " widget-style="buttontext"> - <hyperlink target="deleteSprintTask" description="${uiLabelMap.CommonDelete}" link-type="hidden-form" confirmation-message="Are you sure to delete this task?"> + <hyperlink description="${uiLabelMap.CommonDelete}" target="deleteSprintTask" link-type="hidden-form" confirmation-message="Are you sure to delete this task?"> <parameter param-name="sprintId" from-field="parameters.sprintId"/> <parameter param-name="custRequestId"/> <parameter param-name="workEffortId" from-field="taskId"/> @@ -2418,7 +2418,7 @@ under the License. <display-entity entity-name="StatusItem"/> </field> <field name="companyNameId" title="${uiLabelMap.ScrumOwnerCompany}" use-when="!isCurrentCompany"> - <hyperlink target="viewprofile" description="${resultCompanyGroup.groupName} [${companyNameId}]"> + <hyperlink description="${resultCompanyGroup.groupName} [${companyNameId}]" target="viewprofile"> <parameter param-name="partyId" from-field="companyNameId"/> </hyperlink> </field> @@ -2468,7 +2468,7 @@ under the License. </entity-condition> </actions> <field name="taskName" title="Task Name" > - <hyperlink target="taskView" description="${taskName}"> + <hyperlink description="${taskName}" target="taskView"> <parameter param-name="taskId" from-field="taskId"/> </hyperlink> </field> @@ -2484,7 +2484,7 @@ under the License. <form name="ListTaskSprint" list-name="notes" title="" type="list" paginate-target="backlogView" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <field name="custRequestId" title="Backlog ID" widget-style="buttontext"> - <hyperlink target="backlogView" description="${custRequestId}"> + <hyperlink description="${custRequestId}" target="backlogView"> <parameter param-name="custRequestId" from-field="${custRequestId}"/> </hyperlink> </field> @@ -2512,7 +2512,7 @@ under the License. <field name="thruDate"><ignored/></field> <field name="submitButton"><ignored/></field> <field name="deleteLink" title=" " widget-style="buttontext" use-when="headerItem.equals("EditProjectContents")"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteProjectContent" request-confirmation="true"> + <hyperlink description="${uiLabelMap.CommonDelete}" target="deleteProjectContent" also-hidden="false" request-confirmation="true"> <parameter param-name="contentId"/> <parameter param-name="workEffortId"/> <parameter param-name="workEffortContentTypeId"/> @@ -2582,7 +2582,7 @@ under the License. <field name="contentName"><display description="${contentMap.contentName} [${contentId}]"/></field> <field name="fromDate"><display/> </field> <field name="deleteLink" title=" " widget-style="buttontext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteScrumProductContent" request-confirmation="true"> + <hyperlink description="${uiLabelMap.CommonDelete}" target="deleteScrumProductContent" also-hidden="false" request-confirmation="true"> <parameter param-name="contentId"/> <parameter param-name="fromDate"/> <parameter param-name="productId"/> @@ -2689,7 +2689,7 @@ under the License. <field name="mimeTypeId"><hidden/></field> <field name="fromDate"><display/></field> <field name="deleteLink" title=" " widget-style="buttontext" > - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteBacklogItemContent" request-confirmation="true"> + <hyperlink description="${uiLabelMap.CommonDelete}" target="deleteBacklogItemContent" also-hidden="false" request-confirmation="true"> <parameter param-name="custRequestId"/> <parameter param-name="contentId"/> <parameter param-name="fromDate"/> @@ -2764,7 +2764,7 @@ under the License. <set field="taskName" from-field="resultTask.workEffortName"/> </row-actions> <field name="taskId" title="${uiLabelMap.ScrumTask}" parameter-name="workEffortId"> - <hyperlink target="taskView" link-type="hidden-form" description="${taskName} [${taskId}]" target-window="_BLANK" target-type="intra-app"> + <hyperlink description="${taskName} [${taskId}]" target="taskView" link-type="hidden-form" target-window="_BLANK" target-type="intra-app"> <parameter param-name="taskId" from-field="taskId"/> </hyperlink> </field> @@ -2868,7 +2868,7 @@ under the License. <form name="QuickAddNewTask" type="upload" target="createTaskForBacklog"> <actions> - <entity-condition list="custRequestList" entity-name="CustRequest"> + <entity-condition entity-name="CustRequest" list="custRequestList"> <condition-list combine="and"> <condition-list combine="or"> <condition-expr field-name="custRequestTypeId" value="RF_PROD_BACKLOG" operator="equals"/> @@ -2925,7 +2925,7 @@ under the License. </row-actions> <field name="UnplannedSequence"><hidden value="Y"/></field> <field name="deleteFlag" position="1" title="${uiLabelMap.ScrumMoveToUnplannedSprint}" widget-style="buttontext"> - <hyperlink target="DeleteProductBacklogItem" description="${uiLabelMap.CommonDelete}"> + <hyperlink description="${uiLabelMap.CommonDelete}" target="DeleteProductBacklogItem"> <parameter param-name="productId" from-field="parameters.productId"/> <parameter param-name="custRequestId" from-field="custRequestId"/> <parameter param-name="statusId" from-field="parameters.statusId"/> @@ -3042,14 +3042,14 @@ under the License. <display/> </field> <field name="deleteButton" title=" " position="1" use-when="showPosition1&&!"CRQ_COMPLETED".equals("${custRequest.statusId}")" widget-style="buttontext"> - <hyperlink target="DeleteUnplanBacklog" description="Delete" confirmation-message="Are you sure to delete this sprint backlog ?" link-type="hidden-form"> + <hyperlink description="Delete" target="DeleteUnplanBacklog" confirmation-message="Are you sure to delete this sprint backlog ?" link-type="hidden-form"> <parameter param-name="workEffortId"/> <parameter param-name="custRequestId"/> <parameter param-name="productId"/> </hyperlink> </field> <field name="newTask" title=" " use-when="showPosition1&&!"CRQ_COMPLETED".equals("${custRequest.statusId}")" widget-style="buttontext"> - <hyperlink target="NewUnplanBacklogTask" description="Add Task" link-type="hidden-form"> + <hyperlink description="Add Task" target="NewUnplanBacklogTask" link-type="hidden-form"> <parameter param-name="custRequestId"/> <parameter param-name="productId"/> </hyperlink> @@ -3059,12 +3059,12 @@ under the License. <display description="${partyList[0].lastName} ${partyList[0].firstName} ${partyList[0].middleName}"></display> </field> <field name="editTaskParty" title=" " position="2" use-when="workEffortId!=null&&!"STS_COMPLETED".equals(currentStatusId)" widget-style="buttontext"> - <hyperlink target="EditTask" description="${uiLabelMap.CommonEdit}" link-type="hidden-form" target-window="_BLANK"> + <hyperlink description="${uiLabelMap.CommonEdit}" target="EditTask" link-type="hidden-form" target-window="_BLANK"> <parameter param-name="taskId" from-field="${workEffortId}"/> </hyperlink> </field> <field name="deleteTaskButton" title=" " position="2" use-when="workEffortId!=null&&!"STS_COMPLETED".equals(currentStatusId)" widget-style="buttontext"> - <hyperlink target="DeleteTaskFromUnplanBacklog" description="Delete" confirmation-message="Are you sure to delete this task ?" link-type="hidden-form"> + <hyperlink description="Delete" target="DeleteTaskFromUnplanBacklog" confirmation-message="Are you sure to delete this task ?" link-type="hidden-form"> <parameter param-name="workEffortId" from-field="workEffortId"/> <parameter param-name="custRequestId"/> <parameter param-name="productId" from-field="parameters.productId"/> @@ -3072,7 +3072,7 @@ under the License. </field> <field name="setCompleteButton" title=" " widget-style="buttontext" use-when="workEffortId!=null&&!"STS_COMPLETED".equals(currentStatusId)" position="2"> - <hyperlink target="setCompleteFromUnplanBacklog" description="${uiLabelMap.ScrumSetComplete}" link-type="hidden-form"> + <hyperlink description="${uiLabelMap.ScrumSetComplete}" target="setCompleteFromUnplanBacklog" link-type="hidden-form"> <parameter param-name="workEffortId" from-field="workEffortId"/> <parameter param-name="productId" from-field="parameters.productId"/> </hyperlink> |
Free forum by Nabble | Edit this page |