gridField - fv!row vs fv!identifier

Hello Folks:

I am trying to figure out why the "value: ......." works when I use fv!identifier but fails when I use fv!row (this gives me all 14 values as the output) whereas I am looking for just the current grid-row's value (one value).  The gridfied documentation seem to imply both are equi

As usual, thanks to the community on my Appian learning journey.

Ma

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to MaNa

    Hi 

    I tried this 

    a!localVariables(
    local!data:{{number:301,name:"Calcium"},
    {number:303,name:"Calcium"}},
    a!gridField(
    data: local!data,
    columns: a!gridColumn(
    label: "Number",
    value: fv!row.number
    )

    )
    )

    and it worked 

    Are you using a!localVariables if yes could you please share the data of you local variable from the local variable data section

    I strongly feel your data structure is incorrect

Children