Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
2 replies
Subscribers
7 subscribers
Views
1607 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
I am using Image Field to display image on UI. Its working fine but Captions are
vineeta6579
over 9 years ago
I am using Image Field to display image on UI. Its working fine but Captions are not working when i hovering mouse over the image.
See below my code:-
a!imageField( label:"Status"
images:a!documentImage(
document: a!iconIndicator( if(local!SP=0,"STATUS_OK",
if(or(local!SP=2,local!SP=4),"PROGRESS_PAUSED","STATUS_ERROR")
)) ),
size:"ICON", caption: if(local!SP=0,"STATUS OK",
if(or(local!SP=2,local!SP=4),"PROGRESS PAUSED","STATUS ERROR")
))
OriginalPostID-140515
OriginalPostID-140515
Discussion posts and replies are publicly visible
0
praveenj
over 9 years ago
Caption should be in a!documentImage(). See below.
= load(
local!SP: 0,
a!imageField(
label: "Status",
images: a!documentImage(
document: a!iconIndicator(
if(
local!SP = 0,
"STATUS_OK",
if(
or(
local!SP = 2,
local!SP = 4
),
"PROGRESS_PAUSED",
"STATUS_ERROR"
)
)
),
caption: if(
local!SP = 0,
"STATUS OK",
if(
or(
local!SP = 2,
local!SP = 4
),
"PROGRESS PAUSED",
"STATUS ERROR"
)
)
),
size: "ICON"
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
vineeta6579
over 9 years ago
Thanks Praveen
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel