Advertisement
JoanMarcos

Untitled

Jun 12th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('#Empresa_ID').change(function() {
  2.  
  3.         var idEmpresa = $('#Empresa_ID').val();
  4.  
  5.         $.get('/empresaModuloConsulta2/'+idEmpresa, function (ModulosPivot) {
  6.    
  7.             const modulos = $('input[type=checkbox]');
  8.             for (var i =0; i < modulos.length; i++) {
  9.                 modulos.checked = (modulos.value == ModulosPivot[i]['Modulo_ID']);
  10.             }
  11.         });
  12.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement