Files
EasySoft-ZenTaoPMS/module/programplan/js/edit.js
T

11 lines
330 B
JavaScript

function changeParentStage(stageID)
{
$.get(createLink('programplan', 'ajaxGetAttribute', 'stageID=' + stageID), function(attribute)
{
$('#attributeType td').html(attribute);
$("#attribute" + "_chosen").remove();
$("#attribute").next('.picker').remove();
$("#attribute").chosen();
})
}