Я сталкиваюсь с этой ошибкой. "Ошибка: $ (...). ComboTree не является функцией"
Я установил jquery, @ types / jquery.
Добавьте плагин comboTree.js иicontainer.js.
URL-адрес Stackblitz:
https://stackblitz.com/edit/angular-pg3hjd
Здесь мой код
app.component.ts
import { Component,OnInit } from '@angular/core';
import $ from 'jquery';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular';
ngOnInit() {
// SampleJSONData Be the Json with tree structure
var comboTree1, comboTree2;
$(document).ready(function($) {
comboTree2 = $('#justAnotherInputBox').comboTree({
source : SampleJSONData,
isMultiple: false
});
});
}
}
<div class="row">
<div class="col-lg-6">
<h3>Single Selection</h3>
<input type="text" id="justAnotherInputBox" placeholder="Type to filter"/>
</div>
</div>