依預設,AEM Forms工作區的待辦事項清單會顯示任務顯示名稱和說明。 不過,您可以新增其他資訊,例如建立日期、截止日期等。 您也可以新增圖示並變更顯示樣式。
本文詳細說明為ToDo清單中的每個任務新增資訊的步驟。
您可以新增以下專案中的可用資訊: task.json
由伺服器傳送。 資訊可以純文字形式新增,也可以使用樣式來格式化資訊。
如需JSON物件說明的詳細資訊,請參閱 此 文章。
請遵循 AEM Forms工作區自訂的一般步驟.
若要顯示工作的其他資訊,必須在的工作區塊中新增對應的索引鍵/值組 translation.json
.
例如,變更 /apps/ws/locales/en-US/translation.json
若為英文:
"task" : {
"reminder" : {
"value" : "Reminder",
"tooltip" : "This is reminder __reminderCount__, for this task."
},
"deadlined" : {
"value" : "Deadlined",
"tooltip" : "This task has deadlined"
},
"save" : {
"message" : "Task has been saved successfully"
},
"status" : {
"deadlined" : "Deadlined",
"created" : "Created",
"assignedsaved" : "Draft from assigned task",
"terminated" : "Terminated",
"assigned" : "Assigned",
"unknown" : "Unknown",
"createdsaved" : "Draft from created task",
"completed" : "Completed"
},
"draft" : {
"value" : "Saved",
"tooltip" : "This task is marked as a draft"
},
"escalated" : {
"value" : "Escalated",
"tooltip" : "This task has been escalated"
},
"forward" : {
"value" : "Forwarded",
"tooltip" : "This task was forwarded"
},
"priority" : {
"highest" : "Highest priority",
"normal" : "Normal priority",
"high" : "High priority",
"low" : "Low priority",
"lowest" : "Lowest priority"
},
"claimed" : {
"value" : "Claimed",
"tooltip" : "This task has been claimed"
},
"locked" : {
"value" : "Locked",
"tooltip" : "This task is locked"
},
"consulted" : {
"value" : "Consulted",
"tooltip" : "This task has been consulted"
},
"returned" : {
"value" : "Returned",
"tooltip" : "This task was returned back"
},
"multiplesubmitbuttons" : {
"message" : "The form associated with this task has multiple submit buttons so the Workspace Complete button will be disabled. Click the appropriate button on the form to submit it."
},
"nosubmitbutton" : {
"message" : "The form associated with this task does not appear to have submit buttons. You may need to upgrade your Adobe Reader version to 9.1 or greater and enable the Reader Submit option in your process."
},
"icon" : {
"tooltip" : "open the task __taskName__"
}
}
為所有支援的語言新增對應的機碼值組。
例如,在工作區塊中新增資訊:
"stepname" : {
"value" : "Step Name",
"tooltip" : "This task belongs to __stepName__ step"
}
您可以將樣式套用至新增至工作的資訊(屬性)。 若要這麼做,您必須為新增至的新屬性新增樣式資訊 /apps/ws/css/newStyle.css
.
例如,新增:
.task .taskProperties .stepname{
width: 25px;
background: url(../images/stepname.png) no-repeat; /*-------- Or just reuse background image / image-sprite defined .task .taskProperties span of style.css---------------------*/
background-position: 0px 0px; /*-------- Dummy values, need to be configured as per user background image / image-sprite ---------------------*/
}
最後,您必須在開發套件中針對您想要新增至工作的每個屬性包含一個專案。 若要建立工作區,請參閱建立AEM Forms工作區程式碼。
複製 task.html
:
/libs/ws/js/runtime/templates/
/apps/ws/js/runtime/templates/
將新資訊新增至 /apps/ws/js/runtime/templates/task.html
.
例如,在下新增 div class="taskProperties"
:
<span class="stepname" alt="<%= $.t('task.stepname.value')%>" title = '<%= $.t("task.stepname.tooltip",{stepName:stepName})%>'/>