datatable header no show correctly
datatable header no show correctly
paradita85
Posts: 16Questions: 0Answers: 0
I have a table with datatables but I can not display correctly within a dialog.
{% trans %}Seleccione el médico{% endtrans %}:
{% for medico in medicos %}
{{medico.nombre}}
{% endfor %}
aqui se pondra la fecha
{% trans %}Id{% endtrans %}
{% trans %}Nombre{% endtrans %}
{% trans %}Apellido1{% endtrans %}
{% trans %}Apellido2{% endtrans %}
{% trans %}Dni{% endtrans %}
{% trans %}Acciones{% endtrans %}
{% for cliente in clientes %}
{{ cliente.id }}
{{ cliente.nombre |capitalize }}
{{ cliente.apellido1 |capitalize }}
{{ cliente.apellido2 |capitalize }}
{{ cliente.dni }}
seleccion
<!--Seleccionar-->
{% endfor %}
Dialog:
$("#dialogonuevacita").wijdialog({
autoOpen: false,
show: "Scale",
hide: "Scale",
height: 600,
width: 800,
buttons: {
Cancelar: function () {
$(this).wijdialog("close");
}
}
});
image : http://www.subirimagenes.com/imagen-capturadepantalla-8317200.html
the table show correctly without dialog. thanks.
{% trans %}Seleccione el médico{% endtrans %}:
{% for medico in medicos %}
{{medico.nombre}}
{% endfor %}
aqui se pondra la fecha
{% trans %}Id{% endtrans %}
{% trans %}Nombre{% endtrans %}
{% trans %}Apellido1{% endtrans %}
{% trans %}Apellido2{% endtrans %}
{% trans %}Dni{% endtrans %}
{% trans %}Acciones{% endtrans %}
{% for cliente in clientes %}
{{ cliente.id }}
{{ cliente.nombre |capitalize }}
{{ cliente.apellido1 |capitalize }}
{{ cliente.apellido2 |capitalize }}
{{ cliente.dni }}
seleccion
<!--Seleccionar-->
{% endfor %}
Dialog:
$("#dialogonuevacita").wijdialog({
autoOpen: false,
show: "Scale",
hide: "Scale",
height: 600,
width: 800,
buttons: {
Cancelar: function () {
$(this).wijdialog("close");
}
}
});
image : http://www.subirimagenes.com/imagen-capturadepantalla-8317200.html
the table show correctly without dialog. thanks.
This discussion has been closed.
Replies
I am using the ColReorderWithResize v1.0.7 plugin.