src/templates/ProcesoReclutamiento/formulario_jquery.html.twig line 1

Open in your IDE?
  1.     $('#estructura_centros').submit(function(e){
  2.         var ok=true;
  3.         $('.just_numbers').each(function(){
  4.             if (!$(this).val())
  5.             {
  6.                 ok=false;
  7.                 return false;
  8.             }
  9.         });
  10.         if (!ok)
  11.         {
  12.             alert('Debe completar toda la informaciĆ³n de las prioridades y cupos de las unidades');
  13.             e.preventDefault();
  14.         }
  15.     });
  16.     
  17.     $('#base_select').change(function(){
  18.         var base = $('#base_select').val();
  19.         if (base)
  20.         {
  21.             $('#base_select').val('');
  22.             var url = '{{ path('add_base', {'base':'__BASE__'}) }}';
  23.             url = url.replace('__BASE__',base);
  24.             $('#tab-centros').mask('       Adicionando base...');
  25.             $.ajax({
  26.                 url: url,
  27.                 type: 'GET',
  28.                 processData: false,
  29.                 contentType: false,
  30.                 dataType: 'json',
  31.                 success: function (data) {
  32.                     $('#tab-centros').unmask();
  33.                     if (data.ok)
  34.                     {
  35.                         $('#base_select').parent().parent().after(data.html);
  36.                         $('#base_option_'+base).addClass('hide');
  37.                         fillLugarSelect();
  38.                     }
  39.                     else
  40.                     {
  41.                         showError(bootbox, data.msg);
  42.                     }
  43.                 },
  44.             });
  45.         }
  46.     });
  47.     fillUnidadSelect();
  48.     fillLugarSelect();
  49.     
  50.     
  51.