Skip to main content
November 9, 2022
Question

Want to redirect to a!record link to site record page .

  • November 9, 2022
  • 3 replies
  • 0 views

how to redirect to site record page by using record link.

a!linkField(
              links: a!recordLink(
                label: fv!row['recordType!{3a9fe53d-c80b-44ca-9818-c29c6bd853a5}TRM Request Type.fields.{986b4d5b-200e-4665-a365-33808cab1533}name'],
                recordType: 'recordType!{3a9fe53d-c80b-44ca-9818-c29c6bd853a5}TRM Request Type',
                identifier: fv!identifier,
                dashboard: "summary",
                openLinkIn: "NEW_TAB"
              )
            )

3 replies

stefanhelzle0001
Brainy
November 9, 2022

If that link is clicked in a site, the user will stay in the site.

November 9, 2022

Agree with above suggestion and if you want to give a pop feature , try  openLinkIn: "DIALOG"

mikes0011
Brainy
November 9, 2022
and if you want to give a pop feature , try  openLinkIn: "DIALOG"

This is not correct.

To clarify, a!recordLink() only has 2 options for "openLinkIn" --> "SAME_TAB" and "NEW_TAB".  Setting it to "DIALOG" not only won't work, but will produce the brightest of pink-screen errors.

The Expression Guru