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
9 replies
Subscribers
7 subscribers
Views
3488 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
Hi, I have paging grid to show all documents and I want to create a
Sachin Pandey
A Score Level 1
over 9 years ago
Hi,
I have paging grid to show all documents and I want to create a link to the document for download. There is a link created but not to the document. Any suggestions on expression so i can get the link to document?
Expression:
a!gridTextColumn(
label: "Name",
field: "appiandocumentid",
data: local!datasubset.data.name,
links:apply(a!documentDownloadLink(document:_), index(local!datasubset.data, "appiandocumentid", {}))
),
OriginalPostID-173948
OriginalPostID-173948
Discussion posts and replies are publicly visible
Parents
0
Sachin Pandey
A Score Level 1
over 9 years ago
Working Code:
a!gridTextColumn(
label: "Name",
field: "appiandocumentid",
data: property(local!datasubset.data, "name", {}),
links: {
apply(
a!documentDownloadLink(document:_),
property(local!datasubset.data, "appianDocumentId", {})
)
}
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
Sachin Pandey
A Score Level 1
over 9 years ago
Working Code:
a!gridTextColumn(
label: "Name",
field: "appiandocumentid",
data: property(local!datasubset.data, "name", {}),
links: {
apply(
a!documentDownloadLink(document:_),
property(local!datasubset.data, "appianDocumentId", {})
)
}
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data