Hi all, we switched from iframe embedding of dashb...
# gooddata-ui
m
Hi all, we switched from iframe embedding of dashboards to React embedding However, now we've lost 1) help bubbles, 2) drill downs, and 3) the ability to export tables. How do we get these back?
r
Heya Michael, I tested this on v10.5 (and GD Cloud) and it looks to be okay - at least for the help and exports. The drill-downs are limited to the interactions you define (as per the screenshot). For the "explore from here", this isn't present since the way it works on the web wouldn't really be compatible with embedding - normally, the option opens another overlay view, so the absence of that is by design. Hope this helps! 🙂
m
Hey Radek, thanks for the response. Do I need to explicitly enable interactions somewhere in React? Currently, I just embed the dashboard with the following code. I wasn't sure what props to turn configure:
Copy code
<BackendProvider backend={backend}>
        <WorkspaceProvider workspace={workspaceId}>
          <Dashboard
            dashboard={idRef(dashboardId)}
            config={{
              settings: {
                enableHidingOfWidgetTitle: true,
                whiteLabeling: {
                  enabled: true,
                },
              },
              isReadOnly: true,
              isEmbedded: true,
              isWhiteLabeled: true,
            }}
          />
        </WorkspaceProvider>
      </BackendProvider>
Hey Radek, removing all the config settings I had seem to be working.
🙌 1
Thanks