Forum Replies Created
-
Author
-
June 29, 2016 at 7:49 am in reply to: jqxTree AngularJS Directive jqxTree AngularJS Directive #85486
Hi Dimitar,
In my plunker, when you expand the first item “Item 1”, the child node is getting added, i.e., “Item 8” is getting added to child node “1.1”. Only in that case, it works. In following cases, it doesn’t work:
1. To expand, when we directly double click on “Item 1.1”, suddenly it will get stuck, then after few seconds, the “item 8” is repeatedly added to “Item 1.1”. And this case, is the actual scenario, what I’m working on. I need to append child nodes on the expanding node.
2. When any other nodes are expanded for example, when I expand “Item 4”, same happens, suddenly it will get stuck, then after few seconds, the “item 8” is repeatedly added to “Item 1.1”.
Thanking you in advance.
June 24, 2016 at 9:40 am in reply to: jqxTree AngularJS Directive jqxTree AngularJS Directive #85409Hi Dimitar,
I used your method of using flag variable, but it didn’t work. Please check my updated plunker. Still the same issue persist, child nodes are repeating.
Thanking you.
June 21, 2016 at 8:21 am in reply to: jqxTree AngularJS Directive jqxTree AngularJS Directive #85312Hi Dimitar,
I have one more doubt. Your solution works fine in click function, but when i tried it in ‘expand’ function, the same object is appended as child nodes repeatedly. What i need is, when i double click on a child node, the jsondata is appended to that child node without repeating. How can I implement that. Please check out the plunker
Thanking you in advance.
June 21, 2016 at 7:44 am in reply to: jqxTree AngularJS Directive jqxTree AngularJS Directive #85308Hi Dimitar,
Thank you so much for your solution. It worked perfectly.
June 20, 2016 at 6:36 am in reply to: jqxTree AngularJS Directive jqxTree AngularJS Directive #85248Hi Dimitar,
Thanks for your reply. I have already tried the method addTo as follows:
var obj = {
id: “8”,
label: “Item 8”
};
var treeElement = $scope.tree.getSelectedItem().element
$scope.tree.addTo(obj, treeElement)
$scope.tree.render();The new object was added to the child node, but it didn’t update the jsondata. Please check the updated plunker
Thank you in advance.
June 18, 2016 at 11:50 am in reply to: jqxTree AngularJS Directive jqxTree AngularJS Directive #85235I have issue while updating json data in jQxTree angularjs.
Here i’m trying to append nodes to child nodes in angularJS. When i try to append nodes to parent node, it works, but when appended to child nodes. it doesn’t work. Please find the code in plunker.
Please help with a solution.
-
AuthorPosts