* finish task #6548.

This commit is contained in:
wangyidong
2019-11-20 14:25:59 +08:00
parent 67c482275f
commit 23c78dece4
8 changed files with 47 additions and 8 deletions
+10
View File
@@ -126,4 +126,14 @@ $(document).ready(function()
});
adjustButtons();
$('#showAllModule').change(function()
{
var moduleID = $('#moduleIdBox #module').val();
var extra = $(this).prop('checked') ? 'allModule' : '';
$('#moduleIdBox').load(createLink('tree', 'ajaxGetOptionMenu', "rootID=" + projectID + '&viewType=task&branch=0&rootModuleID=0&returnType=html&fieldID=&needManage=0&extra=' + extra), function()
{
$('#moduleIdBox #module').val(moduleID).attr('onchange', "loadModuleRelated()").chosen();
});
});
});