Skip to main content
February 24, 2023
Question

Show related action with helptool tip and dotted line in label

  • February 24, 2023
  • 3 replies
  • 0 views

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.

3 replies

February 24, 2023

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"
        ),

February 24, 2023

Hey Kavita, Thanks for the response. But I don't need it in a grid.  I want it only the way it is there in screenshot.

February 24, 2023

I think you need to go with custom code here, bcoz appian have some limitations. 

Last i have done that kind of