Issue with labels in a gridTextColumn

I am using a link in a gridtextcolumn. I am putting a label but it isn't pulling the label I'm telling it to use. Does this look correct?

a!gridTextColumn(
label: "Object URL",
data: index(local!data, "mediaObjectURL", {}),
                                         links: apply(a!safeLink(uri: _, label: "Link to Invoice"),index(local!data, "mediaObjectURL", {}))...

OriginalPostID-117620

OriginalPostID-117620

  Discussion posts and replies are publicly visible

Parents
  • Links in GridTextColumns overlay on top of the "data" field. To show a particular text utilize the data field. For example:

    a!gridTextColumn(
    label: "Object URL",
    data: fn!repeat(length(index(local!data, "mediaObjectURL", {})), "Link to Invoice"),
    links: apply(a!safeLink(uri: _, label: "Link to Invoice"),index(local!data, "mediaObjectURL", {}))...

    In the above we use fn!repeat() to create as many "Link to Invoice" labels as there are URLs
Reply
  • Links in GridTextColumns overlay on top of the "data" field. To show a particular text utilize the data field. For example:

    a!gridTextColumn(
    label: "Object URL",
    data: fn!repeat(length(index(local!data, "mediaObjectURL", {})), "Link to Invoice"),
    links: apply(a!safeLink(uri: _, label: "Link to Invoice"),index(local!data, "mediaObjectURL", {}))...

    In the above we use fn!repeat() to create as many "Link to Invoice" labels as there are URLs
Children
No Data