Error Evaluating UI Expression Expression evaluation error at function a!gridField [line 27]: Could not find variable 'fv!row'

where can I find this interface with fv!item on

  Discussion posts and replies are publicly visible

Parents Reply
  • Beat me to it Slight smile

    Utilizing the a!linkField() code provided here, this is how your expression should read.  Replace the above with:

    {
      a!gridColumn(
        label: "Link",
        value: a!linkField(
          links: {
            a!recordLink(
              label: fv!row['recordType!{7c6cb0af-02e3-4e21-9db7-e5d7ebd92423}.fields.{aappNum}'],
              recordType: 'recordType!{7c6cb0af-02e3-4e21-9db7-e5d7ebd92423}',
              identifier: fv!row['recordType!{7c6cb0af-02e3-4e21-9db7-e5d7ebd92423}.fields.{aappNum}']
            )
          }
        )
      )
    }

Children
No Data