Lines Matching refs:addNode
1011 addNode(parentNodeId: number,
1040 throw new Error('ListNodeUtils[addNode]: The level of the tree view cannot exceed 50.');
1053 throw new Error('ListNodeUtils[addNode]: Parent node not found.');
1290 throw new Error('ListNodeUtils[addNode]: The level of the tree view cannot exceed 50.');
1318 throw new Error('ListNodeUtils[addNode]: Parent node not found.');
2386 …this.listNodeUtils.addNode(dragNodeParam[j].parentId, dragNodeParam[j].currentId, dragNodeParam[j]…
3158 * After the addNode interface is invoked,
3243 this.listNodeUtils.addNode(clickNodeId, newNodeId,
3253 throw new Error('ListTreeNode[addNode]: ' +
3258 throw new Error('ListTreeNode[addNode]: ' +
3263 throw new Error('ListTreeNode[addNode]: currentNodeId can not be -1 or null.');
3267 this.listNodeUtils.addNode(nodeParam.parentNodeId, nodeParam.currentNodeId, nodeParam);
3273 * addNode is only designed for initialization. It can only be invoked during initialization.
3285 public addNode(nodeParam?: NodeParam): TreeController {
3291 throw new Error('ListTreeNode[addNode]: ' +
3296 throw new Error('ListTreeNode[addNode]: ' +
3301 throw new Error('ListTreeNode[addNode]: currentNodeId can not be -1 or null.');
3305 this.listNodeUtils.addNode(nodeParam.parentNodeId, nodeParam.currentNodeId, nodeParam);
3311 * After the initialization is complete by calling the addNode interface,
3314 * This interface must be called when you finish initializing the ListTreeView by addNode.