{% extends 'base.html.twig' %}
{% block js_document_ready %}
$('#datatable').dataTable({
filter : false,
language: {
"url": "//cdn.datatables.net/plug-ins/1.10.16/i18n/Spanish.json"
},
aLengthMenu: "",
bAutoWidth: false,
"columns": [
{
"data": "foto",
render: function(data, type, row, meta) {
if (type === 'display') {
foto = [
'',
].join('');
return foto;
}
return data;
},
},
{ "data": "apellidos" },
{ "data": "nombres" },
{ "data": "dni" },
{ "data": "estadoPsicologico" },
{ "data": "estadoPsiquiatrico" },
{ "data": "acciones",
render: function(data, type, row, meta) {
if (type === 'display') {
if(data['urlSeleccionar'] != null)
{
$botones = [
' ',
'visibility',
' '
].join('');
}
else
{
$botones = [
' ',
'visibility',
' '
].join('')
}
return $botones;
}
return data;
},
},
],
order: [[ 1, 'asc' ]],
columnDefs: [
// These are the column name variables that will be sent to the server
{
"name": "foto",
"searchable": false,
"orderable": false,
"targets": 0
},
{
"name": "apellidos",
"targets": 1
},
{
"name": "nombres",
"targets": 2
},
{
"name": "dp.dni",
"targets": 3
},
{
"name": "estadoPsicologico",
"targets": 4
},
{
"name": "estadoPsiquiatrico",
"targets": 5
},
{
"name": "accion",
"searchable": false,
"orderable": false,
"targets": 6
},
],
"displayStart": {{ app.session.get(constant('App\\Controller\\Examenes\\ExamenController::FORM_CONSULTA_EXAMEN_EXAMINANDOS_START')) ?? 0 }},
serverSide: true,
processing: true,
ajax: {
url: '{{ path('examenes_examinandos_datos', {'tomaExamenFecha': tomaExamenFecha.id}) }}',
type: 'POST'
}
,
fnDrawCallback: function( oSettings ) {
// Refrescar tooltips
$('.tooltipped').tooltip();
{# // Ocultar columnas si no esta seteada el numero de acta
$('#datatable tbody tr').each(function() {
var fechaCell1 = $(this).find('td:eq(3)'); // Columna del resultado en la tabla
fechaCell1.hide();
}); #}
}
});
// the "href" attribute of the modal trigger must specify the modal ID that wants to be triggered
$('select').formSelect();
//var select = $('select');
$('.limpiar').click(function(){
$("input[type=text]").val("");
form.submit();
});
{% endblock %}
{% block breadcrumb %}
Territorio: {{tomaExamenFecha.territorialidad|join(", ") }}
{% endif %}place {{tomaExamenFecha.lugar|capitalize}}
description Acta: {% if tomaExamenFecha.numeroActa is not null %} {{tomaExamenFecha.numeroActa }} {% else %} Sin Definir {% endif %}
Apellidos | Nombres | ||
---|---|---|---|