# 8.0 - Opening an Article

Because of Naviga Writer 8.0's tighter integration with Naviga Dashboard it is no longer possible to open the writer in its own window. To open articles from a plugin an event must be triggered.

Navigating to an article url with the format `https://[organisation].writer.saas-prod.infomaker.io/[article-uuid]` will result in an error explaining that the writer is unable to connect to the Dashboard Application.

To solve this Dashboard now includes support for Standalone App support, which basically opens a single Dashboard Application in a Dashboard instance.

### Trigger an event to open an article

To open an article in a new window, simply trigger an event in your writer plugin like this:

```javascript
import {event, api} from 'writer'

api.events.trigger('plugin-id', event.DASHBOARD_OPEN_ARTICLE, {
    uuid: <article-uuid>
})
```

This will open the article in either a new Writer Application tab in the Dashboard, or a new browser tab, depending on the current dashboard context.

To force the article to open in a new browser tab, trigger the event with the property `inNewWindow` set to true:

```javascript
import {event, api} from 'writer'

api.events.trigger('plugin-id', event.DASHBOARD_OPEN_ARTICLE, {
    uuid: <article-uuid>,
    inNewWindow: true
})
```


---

# 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.navigaglobal.com/writer/developer-guide/upgrade-guides/8.0-opening-an-article.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.
