Skip to main content
yasmeenn2392
October 12, 2023
Question

open new interface

  • October 12, 2023
  • 3 replies
  • 0 views

When I click on the link in row in read only gird, I want to open the summary interface
but the code does not work, what is the problem?

    3 replies

    shikhat
    October 12, 2023

    Hi,

    You need to use record link inside your linkfield function in the record. Attached sample code , summary view should be configured under views tab in records.

    a!gridColumn(
        label: "Name",
        sortField: 'recordType!testrecord.field',
        value: a!linkField(
          links: {
            a!recordLink(
              label: fv!row[recordtype!field],
              recordType: 'recordType!testrecord',
              identifier: fv!identifier
            )
          }
        )
      ),

    yasmeenn2392
    October 12, 2023

    but the data from cdt not record Type

    stefanhelzle0001
    Brainy
    October 12, 2023

    Did you try to attend the Appian online trainings. Your code violates some of the basic principles covered in these trainings.