GitHub user dosubot[bot] added a comment to the discussion: Any way to navigate from Dashboard A to Dashboard B other than Markdown in Superset 6.0.0?
<!-- Greeting --> Hi @anandita0102! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the superset team. <!-- Answer --> There's no native "click-to-navigate-to-another-dashboard" feature in Superset, but beyond the Markdown approach you've already tried, here are the other options available: **1. URL Parameters with Native Filters** You can construct dashboard URLs that pre-apply filter values using native filter URL parameters. The two key parameters are: - `native_filters_key` — a stored key reference to filter configuration - `native_filters` — direct rison-encoded filter state This lets you build a link from Dashboard A that opens Dashboard B with specific filters already applied [[1]](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/src/constants.ts#L39-L46). You'd still embed these links in Markdown or elsewhere, but the filter context carries over. Recent fixes (May 2026) improved reliability of URL parameter preservation in multi-tab scenarios [[2]](https://github.com/apache/superset/pull/39884). **2. Permalink API** The [`/api/v1/dashboard/{id}/permalink`](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/src/utils/urlUtils.ts#L170-L187) endpoint creates stable URLs that preserve: - `dataMask` (filter state) - `activeTabs` (which tabs are open) - `anchor` (scroll to a specific component) You could programmatically generate permalink URLs from Dashboard A that open Dashboard B with pre-applied filters — this is more robust than manually constructing native filter URL params. **3. Regarding Drill By / Drill to Detail** You're correct — both `DRILL_BY` and `DRILL_TO_DETAIL` are enabled by default since Superset 4.0 [[3]](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset/config.py#L531-L532), but they open **modals** for in-place exploration rather than navigating to another dashboard. They won't help with cross-dashboard navigation. **4. Cross-Filtering** Also correct — cross-filtering only works within a single dashboard, not across dashboards. **What's not available (yet):** - There's no chart-level click action that directly redirects to another dashboard. A "Drill to Dashboard" feature (e.g., clicking a map point to navigate to a filtered dashboard) has been discussed but isn't available in a released version yet [[4]](https://github.com/apache/superset/issues/38197). **Practical recommendation:** Your best bet for context-aware navigation is combining the Markdown hyperlink approach with native filter URL parameters or permalink URLs. This gives you the "pass filter context from Dashboard A to Dashboard B" behavior you're looking for — it's just not triggered by a chart click, but rather through a pre-constructed link. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=reply-with-mention&utm_term=apache%2Fsuperset).* --- Docs are dead. Just use [Dosu](https://dosu.dev?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-tagline&utm_term=apache%2Fsuperset). [](https://app.dosu.dev/response-feedback?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-feedback&utm_term=apache%2Fsuperset&message_id=97b601e9-e41f-4d11-a959-da2e407619cd) [](https://github.dosu.com/apache/superset?utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-ask-repo&utm_term=apache%2Fsuperset) [](https://app.dosu.dev/signup?referrer=openSource&source=github-footer&utm_source=github&utm_medium=bot-comment&utm_campaign=github-comment-footer-20260415&utm_content=static-docs-share-team&utm_term=apache%2Fsuperset) GitHub link: https://github.com/apache/superset/discussions/40514#discussioncomment-17101532 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
