Merge branch 'ent-4795-Check-Seleccionar-todos-queda-marcado' into 'develop'

Ent 4795 check seleccionar todos queda marcado

See merge request artica/pandorafms!2821
This commit is contained in:
Daniel Rodriguez 2020-01-14 08:37:04 +01:00
commit b725315ed0
2 changed files with 5 additions and 1 deletions

View File

@ -214,8 +214,8 @@ function show_massive_response_dialog(
$("#button-submit_event_response").show();
},
close: function() {
$("#checkbox-all_validate_box").prop("checked", false);
$(".chk_val").prop("checked", false);
$("#event_response_command_window").dialog("close");
},
width: response["modal_width"],
height: response["modal_height"]

View File

@ -1670,6 +1670,10 @@ function process_datatables_callback(table, settings) {
}
// Uncheck checkbox to select all.
if ($('#checkbox-all_validate_box').length) {
$('#checkbox-all_validate_box').uncheck();
}
}
function process_datatables_item(item) {