Visualizzazione di dati aggiuntivi nell'elenco Da fare

Per impostazione predefinita, nell’elenco Da fare dell’area di lavoro di AEM Forms vengono visualizzati il nome visualizzato e la descrizione dell’attività. Tuttavia, puoi aggiungere altre informazioni quali la data di creazione e la data di scadenza. È inoltre possibile aggiungere icone e modificare lo stile della visualizzazione.

Scheda Da fare di HTML Workspace con la configurazione predefinita

Questo articolo descrive i passaggi per aggiungere informazioni da visualizzare per ogni attività nell'elenco Da fare.

Cosa è possibile aggiungere

È possibile aggiungere le informazioni disponibili in task.json inviato dal server. Le informazioni possono essere aggiunte come testo normale oppure è possibile utilizzare gli stili per formattarle.

Per ulteriori informazioni sulla descrizione dell’oggetto JSON, vedi questo articolo.

Visualizzazione delle informazioni su un'attività

  1. Segui le Passaggi generici per la personalizzazione dell’area di lavoro AEM Forms.

  2. Per visualizzare informazioni aggiuntive su un’attività, è necessario aggiungere le coppie chiave-valore corrispondenti nel blocco attività di translation.json.

    Esempio di modifica /apps/ws/locales/en-US/translation.json per l'inglese:

    "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__"
            }
        }
    
    NOTA

    Aggiungi coppie chiave-valore corrispondenti per tutte le lingue supportate.

  3. Ad esempio, aggiungi informazioni all’interno del blocco di attività:

    "stepname" : {
                "value" : "Step Name",
                "tooltip" : "This task belongs to __stepName__ step"
    }
    

Definizione di CSS per la nuova proprietà

  1. È possibile applicare uno stile alle informazioni (proprietà) aggiunte a un'attività. A questo scopo, devi aggiungere le informazioni di stile per la nuova proprietà aggiunta a /apps/ws/css/newStyle.css.

    Ad esempio, aggiungi:

    .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 ---------------------*/
    }
    

Aggiunta di una voce nel modello HTML

Infine, è necessario includere una voce nel pacchetto di sviluppo per ogni proprietà che si desidera aggiungere all'attività. Per crearne uno, consulta Creazione del codice dell’area di lavoro di AEM Forms.

  1. Copia task.html:

    • da: /libs/ws/js/runtime/templates/
    • a: /apps/ws/js/runtime/templates/
  2. Aggiungi le nuove informazioni a /apps/ws/js/runtime/templates/task.html.

    Ad esempio, aggiungi sotto div class="taskProperties":

    <span class="stepname" alt="<%= $.t('task.stepname.value')%>" title = '<%= $.t("task.stepname.tooltip",{stepName:stepName})%>'/>
    

In questa pagina