Dynamic Link Configuration

How to get another interface on click of dynamic link in main interface?

example: Interface ABC having dynamic link on click of that link want to open another interface say XYZ.
Please do help how to configure.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    Hi Anita, Please refer to this one. Hope it helps


    a!localVariables(
      local!priority,
      {
        a!columnsLayout(
          columns: {
            a!columnLayout(
              contents: {
                a!linkField(
                  label: "Link Field",
                  links: {
                    a!dynamicLink(
                      label: "Link",
                      value: "High",
                      saveInto: local!priority
                    )
                  }
                )
              }
            )
          }
        ),
        a!columnsLayout(
          columns: {
            a!columnLayout(
              contents: {
                if(
                  a!isNullOrEmpty(local!priority),
                  {},
                  rule!AG_InterfaceXYZ()
                )
              }
            )
          }
        )
      }
    )

Reply
  • 0
    Certified Senior Developer

    Hi Anita, Please refer to this one. Hope it helps


    a!localVariables(
      local!priority,
      {
        a!columnsLayout(
          columns: {
            a!columnLayout(
              contents: {
                a!linkField(
                  label: "Link Field",
                  links: {
                    a!dynamicLink(
                      label: "Link",
                      value: "High",
                      saveInto: local!priority
                    )
                  }
                )
              }
            )
          }
        ),
        a!columnsLayout(
          columns: {
            a!columnLayout(
              contents: {
                if(
                  a!isNullOrEmpty(local!priority),
                  {},
                  rule!AG_InterfaceXYZ()
                )
              }
            )
          }
        )
      }
    )

Children