refreshLink

지정된 링크를 업데이트합니다

void refreshLink(string | number id);
idstring | number링크 ID

Example

gantt.addLink({
    id:1,
    source:1,
    target:2,
    type:1
});
 
var task = gantt.getLink(1);
 
task.type = 2; gantt.refreshLink(1);

Details

이 메서드는 링크의 속성을 수정한 후 링크를 다시 그릴 때 사용됩니다. updateLink와 달리 DataProcessor를 활성화하지 않으므로 서버로 변경 사항이 전송되지 않습니다.

See also
Back to top