* Finish task #77136.

This commit is contained in:
wangyuting
2022-11-22 02:13:02 +00:00
parent aa8895944e
commit 748335e401
2 changed files with 27 additions and 23 deletions
+9 -1
View File
@@ -11,5 +11,13 @@ $(function()
{
$("input[name='" + name + "'][type=hidden]").val('0').attr('disabled', false);
}
})
});
$('input[name=allChecker]').change(function()
{
$(this).closest('tr').find("input[name^='module']").prop('checked', $(this).prop('checked')).change();
});
$('#allChecker').change(function()
{
$('input[name=allChecker]').prop('checked', $(this).prop('checked')).change();
});
})