Skip to main content
April 18, 2022
Question

Value not getting updated for a paragraph component in Site

  • April 18, 2022
  • 3 replies
  • 0 views

Hi Team,

We are using a paragraph component in our form-layout interface. We are saving its value in a rule input. Though the paragraph would be visible, it would be allowed for editing only when a specific condition is met.

The rule input gets updated in an interface but in site page the value is neither getting updated nor reflected in the component. It just disappears.

The form is called via a related action from a record type.

Below is the code : 

a!paragraphField(
label: "Closure Notes",
labelPosition: "ABOVE",
helpTooltip: "Maximum 1000 character allowed without extra space",
value: ri!closenotes,
saveInto: ri!closenotes,
disabled : ri!status<>"Closed",
refreshAfter: "UNFOCUS",
characterLimit: 1000,
height: "MEDIUM",
required: if(status="Closed",true,false)
)

Please let me know how to resolve this

    3 replies

    April 18, 2022

    Resolved

    peter.lewis
    Employee
    April 18, 2022

    Would you mind posting what the issue was? Other users may run into a similar problem and this post could help them!

    April 19, 2022

    Sure!! The issue was we had missed mapping the variables in the process model. As this paragraph was called in a form-layout and with rule inputs, we had to provide the mapping in process model start form tab. This was where it was missed. And hence the issue!!