Guest User

Untitled

a guest
Jan 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <label class="checkbox">
  2. <input type="checkbox" id="user_ids_for_edit" name="user_ids_for_edit[]" data-toggle="checkbox" data-toggle="checkbox" value="14">Billy Joel
  3. </label>
  4.  
  5. $.ajax({
  6. type: "GET",
  7. url: "/data/team_users",
  8. data: { id: data.id },
  9. cache: false,
  10. dataType: "json",
  11. success: function(response)
  12. {
  13. for (var user in response) {
  14. alert(response[user].id); // this gives the right user id, so my ajax call works...
  15. $('#user_ids_for_edit[value="'+ response[user].id +'"]').attr('checked', true);
  16. }
  17.  
  18. }
  19. });
Add Comment
Please, Sign In to add comment