Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

treeData mode drag sample code isSelectionParentOfTarget method improvement #7869

Open
netnr opened this issue Apr 19, 2024 · 0 comments
Open

Comments

@netnr
Copy link

netnr commented Apr 19, 2024

https://ag-grid.com/javascript-data-grid/row-dragging/#example-highlighted-tree-data

function isSelectionParentOfTarget(selectedNode, targetNode) {
  var children = selectedNode.childrenAfterGroup || [];
  for (var i = 0; i < children.length; i++) {
    if (targetNode && children[i].key === targetNode.key) return true;
    isSelectionParentOfTarget(children[i], targetNode);
  }
  return false;
}

function isSelectionParentOfTarget(selectedNode, targetNode) {
    // check targetNode!=null

    if (selectedNode.id === targetNode.id) {
        return true;
    }

    let children = selectedNode.childrenAfterGroup || [];
    for (let i = 0; i < children.length; i++) {
        let result = isSelectionParentOfTarget(children[i], targetNode);
        if (result) {
            return true;
        }
    }

    return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants