I have a grid using a!gridField which contains a link column. For some of the ro

I have a grid using a!gridField which contains a link column. For some of the rows, the link needs to be hidden. I tried to use following code but the broswer crashs when testing.

a!gridTextColumn(
label: "Name",
data: ri!data,
links: apply(fn(x), ri!data)
)

fn(x): if(isnull(x), null, a!dynamicLink(...))

Instead, if set the link value directly it will work. Any suggestion?

a!gridTextColumn(
label: "Name",
data: ri!data,
links: {null, a!dynamicLink(...), ...}
)

OriginalPostID-139989

OriginalPostID-139989

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data