Плагин Jquery ComboTree - PullRequest
       12

Плагин Jquery ComboTree

0 голосов
/ 08 февраля 2019

Первая загрузка данных успешно.В следующий раз данные не загружаются динамически.отображаются только ранее загруженные данные.

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