Lines Matching full:parentid
136 * @param {string} parentId Id of the parent node.
140 addByParentId: function(parentId, start, nodesData) {
141 var parent = parentId ? this.treeLookup[parentId] : this;
147 * @param {string} parentId Id of the parent node.
151 removeByParentId: function(parentId, start, count) {
152 var parent = parentId ? this.treeLookup[parentId] : this;
193 * @param {string} parentId Id of the parent node.
196 doSetChildren: function(parentId, children) {
197 var parent = parentId ? this.treeLookup[parentId] : this;
209 CookiesTree.onTreeItemAdded = function(treeId, parentId, start, children) {
210 $(treeId).addByParentId(parentId, start, children);
213 CookiesTree.onTreeItemRemoved = function(treeId, parentId, start, count) {
214 $(treeId).removeByParentId(parentId, start, count);
217 CookiesTree.setChildren = function(treeId, parentId, children) {
218 $(treeId).doSetChildren(parentId, children);