mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Modified admin javascript for check all checkbox to ignore disabled checkboxes.
This commit is contained in:
@@ -72,7 +72,7 @@
|
||||
});
|
||||
|
||||
$(".check-all").change(function () {
|
||||
$(this).parents("table.items").find(":checkbox").prop('checked', $(this).prop("checked"));
|
||||
$(this).parents("table.items").find(":checkbox:not(:disabled)").prop('checked', $(this).prop("checked"));
|
||||
});
|
||||
})(jQuery);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user