Hi all, we are migrating the existing embedding in...
# gooddata-cloud
g
Hi all, we are migrating the existing embedding in our portal from GoodData per the email, and we are using hideControl=[filterBar,shareButton] in the link. The new structure of the embedding is loading the dashboard but it not hiding the filterbar. Is that changed too or?
k
The
hideControl
parameter itself has not changed — it still supports hiding
filterBar
,
shareButton
, and other elements. However, based on community reports, there are a few common reasons why
hideControl=[filterBar,shareButton]
might not work as expected after a migration: 1. Check your URL structure The correct embedded URL format is:
Copy code
<host_url>/dashboards/embedded/#/workspace/<workspace_id>/dashboard/<dashboard_id>?hideControl=[filterBar,shareButton]
A common issue after migrations is an incorrect URL path. Make sure: • The path includes
/workspace/
before the workspace ID. • A specific
dashboard/<dashboard_id>
is included. Without a dashboard ID, you may land on a dashboard picker screen where the top bar/filter bar may not render as expected. [Configuration Options] 2. The
hideControl
parameter is case-sensitive
Make sure you're using lowercase values:
filterBar
and
shareButton
(not
FilterBar
or
Filterbar
). [Configuration Options] 3. There have been past temporary bugs There was a known incident where
hideControl=[topBar,filterBar]
stopped working unexpectedly, which was later fixed by GoodData engineering. [Community Slack] If you suspect a regression, it's worth reaching out to GoodData support directly. Recommended next steps: • Double-check your full iframe
src
URL matches the correct format above. • Confirm the workspace ID and dashboard ID are correct and present in the URL. • If the URL looks correct and it's still not working, share your embedding code snippet with GoodData support for further investigation. 👍 0 button 👎 0 button ℹ️ Tip: Mention @kapa.ai in the thread for follow-ups. 👀 Our Support team monitors all messages and will jump in if needed.
g
@kapa.ai but the URL embedding format that you supplied is the old one
k
You're right, I apologize for that! Based on the migration notice, the new embedded URL format for dashboards is:
Copy code
<host_url>/embedded/workspace/<workspace_id>/dashboards/#/<dashboard_id>?hideControl=[filterBar,shareButton]
The key changes are: • Old:
<host_url>/dashboards/embedded/#/workspace/<workspace_id>/dashboard/<dashboard_id>
New:
<host_url>/embedded/workspace/<workspace_id>/dashboards/#/...
[What's New in GoodData Cloud] Regarding your
hideControl
issue — the knowledge sources do not explicitly confirm whether the
hideControl
URL parameter placement or syntax has changed alongside the new URL structure. It's possible the parameter appending works the same way, but I'd recommend verifying this with GoodData support directly, especially since the migration deadline is August 13, 2026 and the new URLs are already live in production. Also worth noting: if your portal has any
Content-Security-Policy
headers,
frame-src
directives, or other path-based allowlists, those will need to be updated to allow the new URL path as well. [What's New in GoodData Cloud] 👍 0 button 👎 0 button ℹ️ Tip: Mention @kapa.ai in the thread for follow-ups. 👀 Our Support team monitors all messages and will jump in if needed.
s
Ho Goran, We are looking into it internally. Can you confirm it's still not working?
g
Sorry I didn't reply but it is working now. I had an error in the new URL. The email was a bit misleading but the documentation did the trick. Thanks 🙂
🙌 1