Hello All,
I have a SSRS report embedded in an Iframe using a js fonction
and I need to hide the toolbar I tried "&rc:Toolbar=false" but it doesn't work for me !!
Could any one help me on this please .....?

function showReportSSRS() {
//Get iframe control
var iframeObject = executionContext.getControl("IFRAME_OverviewReport");
var clientUrl = parent.Xrm.Page.context.getClientUrl();
if (iframeObject != null) {
var clientUrlapi = executionContext.context.getClientUrl() + "/api/data/v9.0/reports?$select=reportid&$filter=name eq 'Limite Pression Commerciale sur contact'";
GetDataFromWebApi(clientUrlapi,
function set_intitule(reponse) {
var id = "%7b" + reponse.value[0].reportid + "%7d";
iframeObject.setSrc(clientUrl + "/crmreports/viewer/viewer.aspx?action=run&id=" + id + "");
});
}
}
*This post is locked for comments
I have the same question (0)