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
3857 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
mognons
A Score Level 2
over 8 years ago
Try with this variation on shrinaths suggestion:
a!save(
local!pagingInfo.selected,
index(
reverse(
local!pagingInfo.selected
),
1,
null()
)
)
This way you'll avoid getting errors when the local!pagingInfo (should really be gridSelection) is empty, ie no rows are selected.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
mognons
A Score Level 2
over 8 years ago
Try with this variation on shrinaths suggestion:
a!save(
local!pagingInfo.selected,
index(
reverse(
local!pagingInfo.selected
),
1,
null()
)
)
This way you'll avoid getting errors when the local!pagingInfo (should really be gridSelection) is empty, ie no rows are selected.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data