* Add the ajax request when change parent stage for task #83955.

This commit is contained in:
hufangzhou
2023-02-07 01:08:03 +00:00
parent 3e1b5be66e
commit 9137ed1b83
3 changed files with 44 additions and 13 deletions
+10
View File
@@ -0,0 +1,10 @@
function changeParentStage(stageID)
{
$.get(createLink('programplan', 'ajaxGetAttribute', 'stageID=' + stageID), function(attribute)
{
$('#attributeType td').html(attribute);
$("#attribute" + "_chosen").remove();
$("#attribute").next('.picker').remove();
$("#attribute").chosen();
})
}