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
1452 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
Document property on screen
akanksham292
over 8 years ago
Hi All,
How can we get document extension of an uploaded document in a form without going to process model?
OriginalPostID-248919
Discussion posts and replies are publicly visible
Parents
0
Shashank
over 8 years ago
@akanksham
Afaik there is no way to get the extension without going to the process model, but there is a workaround through which it can be achieved
Use this in you section where you want to display the extension of the file
rule!getFileExtension(a!fileUploadField(value:ri!image_doc).uploadedDocumentName)
where the rule "getFileEtension(fileName_txt text)" has
if(isnull(ri!fileName_txt),"",reverse(split(ri!fileName_txt,"."))[1])
Hope this is helpful
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
Shashank
over 8 years ago
@akanksham
Afaik there is no way to get the extension without going to the process model, but there is a workaround through which it can be achieved
Use this in you section where you want to display the extension of the file
rule!getFileExtension(a!fileUploadField(value:ri!image_doc).uploadedDocumentName)
where the rule "getFileEtension(fileName_txt text)" has
if(isnull(ri!fileName_txt),"",reverse(split(ri!fileName_txt,"."))[1])
Hope this is helpful
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data