mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 12:09:21 +00:00
More reliable way to get usersID
This commit is contained in:
parent
7d66064187
commit
dd900eb59d
@ -82,15 +82,18 @@ ComunicWeb.components.userSelect = {
|
||||
*/
|
||||
getResults: function(inputSelect){
|
||||
|
||||
//Get entries
|
||||
var selectUsersResult = $(inputSelect).select2("data");
|
||||
|
||||
//Prepare return
|
||||
var usersID = [];
|
||||
|
||||
for(i in inputSelect.children){
|
||||
for(i in selectUsersResult){
|
||||
|
||||
//Check it is really a children
|
||||
if(inputSelect.children[i].value){
|
||||
if(selectUsersResult[i].id){
|
||||
//Add ID to the table
|
||||
usersID.push(inputSelect.children[i].value);
|
||||
usersID.push(selectUsersResult[i].id);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user