Skip to main content
Participating Frequently
April 14, 2021
Question

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

  • April 14, 2021
  • 4 replies
  • 9 views

where can I find this interface with fv!item on

4 replies

csteward
Brainy
April 14, 2021

In your Columns setup, mouse over to show the expression editor, review what is defined in there.  This should be a list of a!gridColumn().  Feel free to post any further SAIL expressions in the thread here.  

Participating Frequently
April 14, 2021

there is no line 27 unfortunate.
is only the following 

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

danny.verb
Employee
April 14, 2021

This section expects a list of columns, you should update your code to

{
    a!gridColumn(
        label: "Link",
        value: a!linkField(
            links: {
                a!recordLink()
            }
        )
    )
}