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
8 replies
Subscribers
7 subscribers
Views
3724 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
How can I show variable with multiple values in a grid via SAIL? I can only see
zulfiqarp
over 9 years ago
How can I show variable with multiple values in a grid via SAIL? I can only see example of CDT that can be display in a grid (sample values for the variable: "One";"Two";"Three";"Four";)
OriginalPostID-140158
OriginalPostID-140158
Discussion posts and replies are publicly visible
Parents
0
Conor Cahill
Certified Lead Developer
over 9 years ago
Doing this worked for me:
a!gridField(
label: "Test Grid Field",
value: topagingInfo(1,10),
totalCount: length(ri!test),
columns: {
a!gridTextColumn(
label: "Test Data",
data: ri!test
)
}
)
test input value (ri!test): {"one";"two";"three";"four"}
And that worked for me. Are you doing something different?
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
Conor Cahill
Certified Lead Developer
over 9 years ago
Doing this worked for me:
a!gridField(
label: "Test Grid Field",
value: topagingInfo(1,10),
totalCount: length(ri!test),
columns: {
a!gridTextColumn(
label: "Test Data",
data: ri!test
)
}
)
test input value (ri!test): {"one";"two";"three";"four"}
And that worked for me. Are you doing something different?
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data