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
3 replies
Subscribers
7 subscribers
Views
3859 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
Selectable Grid Layout
erick258
over 8 years ago
Hi, I'm trying to set a selectable grid layout to restrict the number of selection available to 1, in which, when user click on one checkbox, other checked box is uncheck and the one that user choose is checked. In short, I want to force selectable checkbox to behave like a radio button. Is there a way for this to be achieved? Thanks.
OriginalPostID-237299
Discussion posts and replies are publicly visible
Parents
0
srinaths
Certified Lead Developer
over 8 years ago
This can be achieved by reversing the selected items array, and saving the first index of the resultant array in the pagingInfo.
a!save(
local!pagingInfo.selected,
index(
reverse(
local!pagingInfo.selected
),
1
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
srinaths
Certified Lead Developer
over 8 years ago
This can be achieved by reversing the selected items array, and saving the first index of the resultant array in the pagingInfo.
a!save(
local!pagingInfo.selected,
index(
reverse(
local!pagingInfo.selected
),
1
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data