"Save Draft" option in Tasks

Certified Associate Developer

Hello guys, can anyone explain how the save draft functionality works in some detail.

In my task i have a grid in which i select a row and then press save draft. After opening the task again, the row is not selected. 

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to Paroshni Naidoo
    local!technicalInformation: 'type!{urn:com:appian:types:PRD}PRD_BlendTechnicalInformation'()

    So the local variable is not making any reference to the current value of the rule input.  And then the field's "value" parameter only makes reference to the local variable.  So no matter what the user does, when they re-open the form, it's going to appear blank.

    Instead you need to try defining the local variable such that it observes the current value (if any) of the rule input:

    local!technicalInformation: ri!technicalInformation,

Children