Merge branch 'ent-12402-multiselector-roto-en-Components-groups' into 'develop'

Ent 12402 multiselector roto en components groups

See merge request artica/pandorafms!6774
This commit is contained in:
Matias Didier 2024-01-18 08:39:26 +00:00
commit 1201da4b50
1 changed files with 2 additions and 2 deletions

View File

@ -394,11 +394,11 @@ html_print_action_buttons(
$('[id^=checkbox-all_delete]').change(function(){
if ($("#checkbox-all_delete").prop("checked")) {
$('[id^=checkbox-delete_multiple]').parent().parent().addClass('checkselected');
$(".check_delete").prop("checked", true);
$(".custom_checkbox_input").prop("checked", true);
}
else{
$('[id^=checkbox-delete_multiple]').parent().parent().removeClass('checkselected');
$(".check_delete").prop("checked", false);
$(".custom_checkbox_input").prop("checked", false);
}
});
});