Skip to content
Snippets Groups Projects
Commit 7316055a authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

multiselect for ajax-users-select2

parent bf17d976
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -11,9 +11,12 @@ $ ->
markup += "</div>"
markup
 
userFormatSelection = (user) ->
user.name
 
$('.ajax-users-select').select2
placeholder: "Search for a user"
multiple: true
minimumInputLength: 0
ajax: # instead of writing the function to execute the request we use Select2's convenient helper
url: "/api/v3/users.json"
Loading
Loading
@@ -40,7 +43,7 @@ $ ->
 
 
formatResult: userFormatResult # omitted for brevity, see the source of this page
#formatSelection: userFormatSelection # omitted for brevity, see the source of this page
formatSelection: userFormatSelection # omitted for brevity, see the source of this page
dropdownCssClass: "ajax-users-dropdown" # apply css that makes the dropdown taller
escapeMarkup: (m) -> # we do not want to escape markup since we are displaying html in results
m
Loading
Loading
Loading
Loading
@@ -16,7 +16,7 @@ class TeamMembersController < ProjectResourceController
end
 
def create
users = User.where(id: params[:user_ids])
users = User.where(id: params[:user_ids].split(','))
 
@project.team << [users, params[:project_access]]
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment