Around the time we upgrade from 7.9 to 7.10 we've noticed a small issue whic

Certified Associate Developer
Around the time we upgrade from 7.9 to 7.10 we've noticed a small issue which one of review forms did not show the requester name field (field type: User). We haven't made any changes to the process/form. Also know noticed that the requester shows up on the portal form but not in Tempo. Would anyone have an idea to why this is?

OriginalPostID-182542

OriginalPostID-182542

  Discussion posts and replies are publicly visible

Parents
  • Here is the code I tried with:
    =a!formLayout(
    label: "Test Form",
    firstColumnContents: {
    a!sectionLayout(
    label: "Requestor",
    firstColumnContents: {
    a!textField(
    label: "Name",
    labelPosition: "ABOVE",
    value: tp!owner,
    saveInto: {},
    refreshAfter: "UNFOCUS",
    validations: {}
    )
    }
    )
    },
    buttons: a!buttonLayout(
    primaryButtons: {
    a!buttonWidgetSubmit(
    label: "Submit",
    style: "PRIMARY",
    saveInto: {}
    )
    },
    secondaryButtons: {
    a!buttonWidgetSubmit(
    label: "Cancel",
    style: "NORMAL",
    value: true,
    saveInto: ri!cancel,
    skipValidation: true
    )
    }
    )
    )
Reply
  • Here is the code I tried with:
    =a!formLayout(
    label: "Test Form",
    firstColumnContents: {
    a!sectionLayout(
    label: "Requestor",
    firstColumnContents: {
    a!textField(
    label: "Name",
    labelPosition: "ABOVE",
    value: tp!owner,
    saveInto: {},
    refreshAfter: "UNFOCUS",
    validations: {}
    )
    }
    )
    },
    buttons: a!buttonLayout(
    primaryButtons: {
    a!buttonWidgetSubmit(
    label: "Submit",
    style: "PRIMARY",
    saveInto: {}
    )
    },
    secondaryButtons: {
    a!buttonWidgetSubmit(
    label: "Cancel",
    style: "NORMAL",
    value: true,
    saveInto: ri!cancel,
    skipValidation: true
    )
    }
    )
    )
Children
No Data