angular-tree-component icon indicating copy to clipboard operation
angular-tree-component copied to clipboard

A simple yet powerful tree component for Angular (>=2)

Results 113 angular-tree-component issues
Sort by recently updated
recently updated
newest added

Hello, I have an issue with showing the tree. Before after adding nodes you could see the information. Now I have to click on the screen to see the tree...

PLEASE READ CAREFULLY! # Reproduce Please reproduce here if reporting a bug, or requesting help: https://stackblitz.com/edit/angular-wxansn # Additional Info - paste your package.json - which browser - paste your code...

is there any option to limit the number of nodes selected in a tree ?

## PR Checklist Please check if your PR fulfills the following requirements: - [ ] The commit message follows our guidelines: https://github.com/CirclonGroup/angular-tree-component/blob/master/CONTRIBUTING.md#commit-message-guidelines - [ ] Tests for the changes have...

## Minimal reproduction of the bug/regression with instructions: CTRL + Drag node on osx, results in 'right click' ## Expected behavior: Ctrl + drag will clone a node ## Versions...

Hi, I recently discovered this bug, and it is pretty annoying. **Current behaviour:** After selecting the **root node (with atleast one child)** in the tree, the scrollbar moves **automatically to...

bug

How can I get only those nodes that user can see in viewport? Lets say I am using virtual scroll and there are 50 000 nodes, how to get only...

Hello We are currently using the angular tree component in our project but I am noticing a probably unwanted behaviour. When a new node is inserted into the tree the...

getFirstRoot not work in async/await my code: `async ngOnInit(): Promise { await this.initTree(); } async initTree(): Promise { const obj = await this.http.post("api/Dictionary/GetDicInfoTree").toPromise(); this.nodes = generateTree(JSON.parse(obj.Extension)); let firstroot = this.tree.treeModel.getFirstRoot();...

`"angular-tree-component": "^3.7.3"` - component.html ``` ``` - component.ts ``` onFocus(event) { console.log(event); } ``` ### Result ``` Object {eventName: "focus", node: TreeNode, treeModel: TreeModel} Object {eventName: "focus", node: TreeNode, treeModel:...