Hi guys, I need some guidances here on how to use the a!recordLink component in

Hi guys, I need some guidances here on how to use the a!recordLink component in the pagingGrid. We have designed to use entity-backed record and somehow, by clicking the link in the pagingGrid, it will open up a record dashboard.

Any tips? Or please point me to any examples around?

Thanks,
Will

OriginalPostID-188710

OriginalPostID-188710

  Discussion posts and replies are publicly visible

Parents
  • Hi Will, this is an example below for using a record ink on a column in the paging grid. You can also use the Report Builder, to create an example for you. If you use a constant of a record type to build the report, there's an option to create a record link on the column.
    a!gridTextColumn(
    label: "Id",
    field: "id",
    data: index(local!datasubset.data, "id", null),
    links: apply(
    a!recordLink(
    label: "Go to record view",
    recordType: cons!INV_RECORD_TYPE_INVESTIGATIONS,
    identifier: _,
    dashboard: "summary"
    ),
    local!datasubset.identifiers
    )
    )

Reply
  • Hi Will, this is an example below for using a record ink on a column in the paging grid. You can also use the Report Builder, to create an example for you. If you use a constant of a record type to build the report, there's an option to create a record link on the column.
    a!gridTextColumn(
    label: "Id",
    field: "id",
    data: index(local!datasubset.data, "id", null),
    links: apply(
    a!recordLink(
    label: "Go to record view",
    recordType: cons!INV_RECORD_TYPE_INVESTIGATIONS,
    identifier: _,
    dashboard: "summary"
    ),
    local!datasubset.identifiers
    )
    )

Children
No Data