# AUR0765

## Error Message

`AUR0765: Trying to retrieve a custom element controller from a node. But the provided node <{{nodeName}} /> does not appear to be part of an Aurelia app DOM tree, or it was added to the DOM in a way that Aurelia cannot properly resolve its position in the component tree.`

Where `{{nodeName}}` is the tag name of the provided DOM node.

## Description

This error has the same root cause as [AUR0764](/developer-guides/error-messages/runtime-html/aur0764.md): Aurelia cannot resolve a controller relationship for the provided node within the current app’s component tree.

## Example Trigger

```ts
import { CustomElement } from '@aurelia/runtime-html';

// ❌ Node is detached or outside the Aurelia app root
const node = document.querySelector('#outside-the-app')!;
CustomElement.findController(node); // throws AUR0765
```

## Correct Usage

See [AUR0764](/developer-guides/error-messages/runtime-html/aur0764.md) for guidance on ensuring nodes are Aurelia-managed before attempting controller lookup.

## Related Errors

* [AUR0764](/developer-guides/error-messages/runtime-html/aur0764.md)
* [AUR0762](/developer-guides/error-messages/runtime-html/aur0762.md)
* [AUR0763](/developer-guides/error-messages/runtime-html/aur0763.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aurelia.io/developer-guides/error-messages/runtime-html/aur0765.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
