Show related action with helptool tip and dotted line in label

Certified Lead Developer

Hi Champs,

I have a requirement where I have to show the record related action in a link format along with the helptooltip/description (whichever is fine).

I am using a!recordActionField to achive the same as I have to open the interface in a pop-up. but in the same component there is no helptooltip available. What is the alternative approach for the same.

I need something like this

I can see in Appian related action it shows in this format. Not sure how they have  done this.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    Hi you can use this style like below image

    And for tooltip you can display only in grid

    a!gridColumn(
              label: "Actions",
              value: a!recordActionField(
                actions: {
                  a!recordActionItem(
                    action: 'recordType!{601cd09c-9034-4f53-b4d3-8cdfd3116910}RMM Product.actions.{0b2a53d0-356e-4d90-906d-da522d48e9a8}Update',
                    identifier: fv!row['recordType!{601cd09c-9034-4f53-b4d3-8cdfd3116910}RMM Product.fields.{4fba574e-b990-4f92-80c6-6fdbcbf14c4b}id']
                  ),
                  a!recordActionItem(
                    action: 'recordType!{601cd09c-9034-4f53-b4d3-8cdfd3116910}RMM Product.actions.{35299b39-6699-4d2c-b4ca-f9911975cba8}Delete',
                    identifier: fv!identifier
                  )
                },
                style: "MENU_ICON",
                display: "ICON"
              ),
              align: "CENTER",
              width: "NARROW",
              helpTooltip: "Actions"
            ),

Reply
  • 0
    Certified Senior Developer

    Hi you can use this style like below image

    And for tooltip you can display only in grid

    a!gridColumn(
              label: "Actions",
              value: a!recordActionField(
                actions: {
                  a!recordActionItem(
                    action: 'recordType!{601cd09c-9034-4f53-b4d3-8cdfd3116910}RMM Product.actions.{0b2a53d0-356e-4d90-906d-da522d48e9a8}Update',
                    identifier: fv!row['recordType!{601cd09c-9034-4f53-b4d3-8cdfd3116910}RMM Product.fields.{4fba574e-b990-4f92-80c6-6fdbcbf14c4b}id']
                  ),
                  a!recordActionItem(
                    action: 'recordType!{601cd09c-9034-4f53-b4d3-8cdfd3116910}RMM Product.actions.{35299b39-6699-4d2c-b4ca-f9911975cba8}Delete',
                    identifier: fv!identifier
                  )
                },
                style: "MENU_ICON",
                display: "ICON"
              ),
              align: "CENTER",
              width: "NARROW",
              helpTooltip: "Actions"
            ),

Children