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:
commit
b725315ed0
|
@ -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"]
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue