disable actions in event list when centralized mode is enabled and improve behavior of checkboxes when a massive action is applied

Former-commit-id: 11f4606d2e7dd9b91c918323dc8a3dada0c8f765
This commit is contained in:
alejandro-campos 2019-01-15 11:27:05 +01:00
parent efa2e5332f
commit 1ed90180c9
2 changed files with 5 additions and 0 deletions

View File

@ -226,6 +226,9 @@ function show_massive_response_dialog(event_id, response_id, response, out_itera
$('#response_loading_dialog').hide();
$('#button-submit_event_response').show();
},
close: function(event, ui) {
$( ".chk_val" ).prop( "checked", false );
},
width: response['modal_width'],
height: response['modal_height']
})

View File

@ -1027,6 +1027,8 @@ else {
delete_selected();
break;
}
$( ".chk_val" ).prop( "checked", false );
}
}
</script>