jQuery ComboTree插件

时间:2019-02-08 09:21:02

标签: javascript ajax angular typescript jquery-plugins

首次数据加载成功。 下次数据不会动态加载。仅显示先前加载的数据。

 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" />

0 个答案:

没有答案