Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Suggested Answer
+1
person also asked this
people also asked this
Replies
12 replies
Answers
2 answers
Subscribers
10 subscribers
Views
10841 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
a!iconIndicator icons not displaying
surendrab
over 7 years ago
Hi ,
our icons are not displaying where a!iconIndicator is being used? Any pointers would be greatly appreciated
OriginalPostID-273151
Discussion posts and replies are publicly visible
Parents
0
ranveerr
over 7 years ago
Hi Surendrab,
As per above comments a!richTextdisplayField or a!richTextImage will not work in a!gridField(),
You need to use a!gridImageColumn() under columns, this can be iterate throught a!applyComponent()
For your requirement the code should be
a!gridImageColumn(
label: "Status",
size: "ICON",
data: a!applyComponent(
function: a!documentImage(
document: _,
),
array: a!applyComponent(
function: a!iconIndicator(_),
array: "ADD"
)
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
ranveerr
over 7 years ago
Hi Surendrab,
As per above comments a!richTextdisplayField or a!richTextImage will not work in a!gridField(),
You need to use a!gridImageColumn() under columns, this can be iterate throught a!applyComponent()
For your requirement the code should be
a!gridImageColumn(
label: "Status",
size: "ICON",
data: a!applyComponent(
function: a!documentImage(
document: _,
),
array: a!applyComponent(
function: a!iconIndicator(_),
array: "ADD"
)
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data