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

Open in your IDE?
  1. <div class="row">
  2.     <div class="col-xs-12">
  3.         <select id="otros_procesos">
  4.             <option value="">---Seleccione---</option>
  5.             {% for otroProceso in otrosProcesos %}
  6.                 <option value="{{ otroProceso.id }}">{{ otroProceso.anno }}-{{ otroProceso.llamada }}</option>
  7.             {% endfor %}
  8.         </select>
  9.         <a class="btnExpand" onclick="jQuery('#table_test_show').treetable('expandAll'); return false;">
  10.             <button class="btn btn-white btn-inverse btn-bold btn-round" title="{% trans %}botones.expandir{% endtrans %}">
  11.                 <img src="{{ asset('images/icon/expandir.png') }}" width="16px"><span class="hidden-xs">&nbsp;{% trans %}botones.expandir{% endtrans %}</span>
  12.             </button>
  13.         </a>
  14.         <a class="btnExpand" onclick="jQuery('#table_test_show').treetable('collapseAll'); return false;">
  15.             <button class="btn btn-white btn-inverse btn-bold btn-round" title="{% trans %}botones.recoger{% endtrans %}">
  16.                 <img src="{{ asset('images/icon/recoger.png') }}" width="16px"><span class="hidden-xs">&nbsp;{% trans %}botones.recoger{% endtrans %}</span>
  17.             </button>
  18.         </a>
  19.     </div>
  20. </div>
  21. <div class="row">
  22.     <div class="col-xs-12">
  23.         <table id="table_test_show" class="table table-striped table-bordered table-hover">
  24.             <thead>
  25.                 <tr>
  26.                     <th style="width: 150px">
  27.                         Tipo
  28.                     </th>
  29.                     <th>
  30.                         Nombre
  31.                     </th>
  32.                     <th style="width: 130px">
  33.                         Riesgo Bajo
  34.                     </th>
  35.                     <th style="width: 130px">
  36.                         Riesgo Medio
  37.                     </th>
  38.                     <th style="width: 130px">
  39.                         Riesgo Alto
  40.                     </th>
  41.                     <th style="width: 105px">
  42.                         Tipo Pregunta
  43.                     </th>
  44.                 </tr>
  45.             </thead>
  46.             <tbody id="test_otros">
  47.             </tbody>
  48.         </table>
  49.     </div>
  50. </div>
  51.         
  52. <script type="text/javascript">
  53.     $(function()
  54.     {
  55.         $('#otros_procesos').change(function(){
  56.             if ($(this).val())
  57.             {
  58.                 $( "#dlg_otrosProcesos" ).parent().mask('&nbsp;&nbsp;&nbsp;&nbsp;Cargando...');
  59.                 var url = '{{ path('get_test_elements', {'proceso': '__PROCESO__', 'editable': 'NO'}) }}';
  60.                 url=url.replace('__PROCESO__', $(this).val());
  61.                 $('#test_otros').load(url, function(){
  62.                     $( "#dlg_otrosProcesos" ).parent().unmask();
  63.                     $('#table_test_show').treetable({ expandable: true, indent: 10 });    
  64.                 });
  65.             }
  66.         });
  67.         
  68.     });
  69.     
  70. </script>