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
4 replies
Subscribers
7 subscribers
Views
2092 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
I'm having an issue with iconIndicators being displayed next to textField la
reginaldm
over 9 years ago
I'm having an issue with iconIndicators being displayed next to textField labels. Honestly, I'm not sure if it is possible, but I wanted to experiment and find out the answer anyways. In the screenshot I have provided, I am trying to display a clock using the function a!iconIndicator right next to the label "Start Date/Time" that will be about the same size as the text. I understand this will not work as I have shown since this is indeed a text field I'm trying to display an image in.
Any suggestions?
OriginalPostID-162522
OriginalPostID-162522
Discussion posts and replies are publicly visible
0
sikhivahans
over 9 years ago
@reginaldm As spotted by you, unfortunately it isn't viable as the customisation of SAIL isn't possible. To the best of my knowledge working around(for instance, surfacing an image and thereby showing the date time as hover text) to make the interface look in a best possible way as per the SAIL design is the only option.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
reginaldm
over 9 years ago
@sikhivahans I guess I'll just do the best I can with that. Thank you again!
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Amitkumar
over 9 years ago
Try this SAIL snippet and see, if it fits your requirement. Icon image is being displayed just beneath the field.
a!imageField(
label: "Start date / time :" & now(),
images: {
a!documentImage(
document: {
a!iconIndicator(
"WAIT_CLOCK"
)
}
)
},
size: "ICON"
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
Christine Shen
A Score Level 1
over 9 years ago
The best way to display an icon indicator next to text would be in a gridField() or gridLayout(). From there you can use a gridImageColumn() and/or imageField() to display an icon indicator as described by @amitl
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel