Merge pull request #12888 from ArtemDzhereleiko/AD/bug-fix/customer-hierarchy
Fixed changed event on customer hierarchy
This commit is contained in:
		
						commit
						f748ae1580
					
				@ -149,9 +149,9 @@ export class NavTreeComponent implements OnInit {
 | 
			
		||||
 | 
			
		||||
      this.treeElement = $('.tb-nav-tree-container', this.elementRef.nativeElement).jstree(config);
 | 
			
		||||
 | 
			
		||||
      this.treeElement.on('select_node.jstree', (e: any, data) => {
 | 
			
		||||
        const node: NavTreeNode = data.instance.get_selected(true)[0];
 | 
			
		||||
        if (this.onNodeSelected) {
 | 
			
		||||
      this.treeElement.on('changed.jstree', (e: any, data) => {
 | 
			
		||||
        if (this.onNodeSelected && data.action !== 'ready') {
 | 
			
		||||
          const node: NavTreeNode = data.instance.get_selected(true)[0];
 | 
			
		||||
          this.ngZone.run(() => this.onNodeSelected(node, e as Event));
 | 
			
		||||
        }
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
@ -27,6 +27,7 @@ interface JQuery {
 | 
			
		||||
 | 
			
		||||
interface JSTreeEventData {
 | 
			
		||||
  instance: JSTree;
 | 
			
		||||
  action: string;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
interface JSTreeModelEventData extends JSTreeEventData {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user