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
5 replies
Subscribers
7 subscribers
Views
2121 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
User Browser Checkmark
zrizvi
over 8 years ago
I have multiple user browsers on a form. After a user selects a user from the browser, the check mark for the previous selection disappears. Can someone suggest a way to ensure all check marks for previous selections are retained? Thanks.
OriginalPostID-245998
Discussion posts and replies are publicly visible
0
abhinavg712
Certified Lead Developer
over 8 years ago
@riviz, Make a separate interface rule containing the user Browser component and call the same in master interface.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
ramakrishnak
over 8 years ago
@riviz
UserBrowseFiledColumns() component allows you to select a single user at a time.as @abhinvag said create sepearate rule for componenets and call that rule in desired places
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
chandu
A Score Level 2
over 8 years ago
Using a!userBrowserFieldColumns() we can select only one user, How about using
a!pickerFieldUsers()?
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
chandu
A Score Level 2
over 8 years ago
I have tried some thing like appending of the selected User to a local variable, may be this will give an Idea to start a work around for your requirement. here is the code snippet.
load(
local!users,
local!selectedUser,
local!pathValue,
{
a!textField(
label:"Selected Users",
value:local!users,
readOnly:true()
),
a!userBrowserFieldColumns(
label:"Select the User",
instructions:"select a single user and click on Add to add more Users",
rootGroup:cons!AMS_ALL_USERS,
pathValue:local!pathValue,
pathSaveInto: local!selectedUser,
selectionValue:local!users,
selectionSaveInto:
{local!selectedUser,
a!save(local!users,union(local!selectedUser,append(local!users,local!selectedUser)))}
)
}
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
0
zrizvi
over 8 years ago
thanks all i will try out these steps now and will keep you posted.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel