* Finish task#8738.

This commit is contained in:
qiyu-xie
2020-12-22 16:36:31 +08:00
parent 0c477305fa
commit 65ca07f0b3
9 changed files with 55 additions and 37 deletions
+12
View File
@@ -11,3 +11,15 @@ function setAclList(programID)
$('.aclBox').html($('#PGMAcl').html());
}
}
$('#future').on('change', function()
{
if($(this).prop('checked'))
{
$('#budget').val('').attr('disabled', 'disabled');
}
else
{
$('#budget').removeAttr('disabled');
}
});