首次数据加载成功。 下次数据不会动态加载。仅显示先前加载的数据。
getFunctionProcess(id) {
let id = "GetProcessByFunctionId/" + id;
this.rest.model(id).subscribe((response) => {
this.process=response.process;
this.getChildProcess(this.process);
})
}
getChildProcess(process){
var comboTree;
comboTree = (<any>$('#justAnotherInputBox')).comboTree({
source : process,
isMultiple: false
});
<input type="text" id="justAnotherInputBox" placeholder="Type to filter" />