Is it possible to change the color of a linkFied ?

Certified Senior Developer

Hi,

I would need to colorise a a!linkField. I've tried with a!richTextDisplayField() and a!richTextItem(color: ...) but it does not work.

How would you do (if it is possible)?

a!gridColumn(
  label: "contract",
  value: a!linkField(
	links: {
	  a!recordLink( 
		label: ...,
		recordType: ...,
		identifier: ...,
	  )
	},
	align: "CENTER"
  ),
  align: "START",
  width: "NARROW_PLUS"
),               

Regards

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to cedric01

    As this already is working for you, I just want to keep you aware of some things related to it. 
    The link color was introduced by Appian lately. Before that, the link color could only be the accent color of the Appian environment/site. 

    In the previous versions (my idea is 21.1 or before), the specified link color would only work with the text size as STANDARD and will get back to the accent color as soon as you change the size.

Children