Skip to main content
Nintex Community Menu Bar
Question

child relationship in UI-Field

  • July 10, 2024
  • 2 replies
  • 19 views

Forum|alt.badge.img+14

How would I place a child relationship field in a UI-Field if the name of the child relationship in the model is: {{Engagement_Roll__r.Roll__c}}

2 replies

Forum|alt.badge.img+17
  • Nintex Employee
  • July 10, 2024

Global merge syntax can go through the child relationships and get data down there.   Here is an example: 

{{$Model.Account.data.0.Contacts.records.0.CreatedDate}}

Let me break that down: 

  • Go to the Account model. 
  • Get the first row of data
  • Get the Contacts child relationship - and look for its records
  • Get the first row of data from within the child relationship records
  • Get the Created Date field…


Forum|alt.badge.img+14
  • Author
  • July 10, 2024

Here what I am trying to accomplish. I would like to show in a reference field look up a UI_Field Long Text Area using the following. It looks like UI-field does not support "Long Text Area?