Question
· Sep 3, 2018

Embedding DeepSee Web dashboards into Web Appcation

 Hi Community,

  I am using a method taht calls a Dashboard in Deepsee web  from an application , but I want to know if it's possible  to not showing the header, this part that have the search button, the name of the namespace, etc..

This is the method : 

Method %OnAfterCreatePage() As %Status
{
    //Set contratistaId = $Get(%session.Data("ContratistaId"),"")
    //Set gerenciaId    = $Get(%session.Data("GerenciaId"),"")

    //Set filter1 = "&SETTINGS=FILTER:Gerencia.Gerencia.idGerencia."
    
    //Set urlBase = "_DeepSee.UserPortal.DashboardViewer.zen?DASHBOARD=Operacion%2FOportunidad%2FVistaOportunidad.dashboard&NOTITLE=1&NOMODIFY=1&NOBORDER=1&RESIZE=false"
    
    //dsw/index.html#!/d/Operacion/Oportunidad/VistaOportunidad.dashboard?ns=GESTORVENTAS
    Set urlBase = "http://190.162.201.51:57772/dsw/index.html#!/d/Operacion/Oportunidad/Vis..."    
    //Set urlBase = urlBase _ filter1 _ gerenciaId
    
    Set urlBase = urlBase
    
    Set iFrame = %page.%GetComponentById("dashboard")
    Set iFrame.src = urlBase

    Quit $$$OK
}

Thanks in advance 

Regards,

Jaqueline K.

  

Discussion (10)2
Log in or sign up to continue

You are welcome!

Also would love to mention that DeepSee Web (DSW) gives you the option to iframe any particular widget. 

Just right click on a widget and choose Share menuitem and you'll get the iframe code to get this widget embeded to any other web-page.

E.g. here is the code for this widget:

<iframe style="border: none" src="https://analytics.community.intersystems.com/dswpub/index.html#!/d/PostsByYears.dashboard?ns=COMMUNITYPUBLIC&embed=1&widget=0&height=303&isLegend=true" width="551" height="303" ></iframe>

And here is how I obtained it:

Hi Jose!

If your dashboards need the authentication for the access it's logical that it demands to enter login and password.

If you want embedded DSW iframe to use same login/password as another application on the same web page where the user already logged in, it's the matter of how to transfer the access to an embedded iframe.

I cannot answer at the moment how to manage this, and pinging @Eduard Lebedyuk: Eduard, do you think it is possible to transfer session to an MDX2JSON app of the embedded DSW iframe?

Hi Evgeny,

"If you want embedded DSW iframe to use same   other login/password as to another application on the same web page where the user already logged in, it's the matter of how to transfer the access to an embedded iframe."

Our application calls the dashboard who belongs to BI Server, that server manage it's own users.

so we try something like this into the iframe (like the code created by the share option):

https://serverBI/dsw/index.html#!/d/Operacional/Conductores/Dash_Conduct...

Hi José, you have two ways:

1) You have to send the response to "<yourserver>/dsw/Test" with the header "Authorization"="<login:pass in base64>" before each visit to the page.

2) You can create a new web application "mdx2jsonpub" in MDX2JSON namespace with MDX2JSON.Rest. Next, you have to configure limited access for this application. For example, you create the new namespace with public dashboards,  and you specify only this namespace in the accessibility settings "mdx2jsonpub". Last you have to create the new public "dswpub" web application with DSW app, which makes requests to "mdx2jsonpub" and not to "mdx2json".