scripts and plugins working with ComposeSDK
To ease the transition between dashboards embedded via iFrame and the ComposeSDK, widget scripts, dashboard scripts and (most important!) plugins/add-ons should also work with ComposeSDK, e.g. via a flag "allow_scripts_and_plugins" or similar. That way, when moving between the 2 embedding methods, there is less friction.10Views0likes0CommentsAdd indicator for downloading a widget
While downloading a large csv/excel file (over several hundreds mb file) from the widget, there would be a long delay of couple minutes before the browser indicates the file has been downloaded. During this time, the user has no indication if the request to download is in process or has failed. It would be good to have an indicator to show the download of the file is in progress, so user would not click the download multiple times thus causing multiple queries to hit the backend.288Views5likes2CommentsBuilding Confidence (and BloX Widgets) with the Help of Sisense Trainers
My personal experience taking two interactive training sessions with Sisense trainers as a new Sisense user. How I’ve been able to apply new skills to my dashboard work and feel more confident in dashboard design and customizing Blox widgets to get exactly the look and feel I want for my customer experience.2.9KViews7likes2CommentsUpdate_with_SSL
Subject: Update L2025.2.0.249 fails at nginx-ingress (IngressClass ownership conflict) Hello Sisense Support We’re update our single-node Sisense environment (L2025.2.0.249) from HTTP to HTTPS. After setting SSL in single_config.yaml, the installer consistently fails while deploying nginx-ingress. While the updating we encounter a error. Please see below logsSolved116Views0likes4CommentsResponsive pivot table widths
Pivot tables are currently not responsive and it doesn't take up the full width of the available screen in an embedded dashboard. For table widgets, we can set the width to "auto" which uses the whole screen space. Similar functionality can be added to pivot tables to make the dashboards look more formal and appealing.27Views1like0CommentsHow to prevent iframe reload when switching tabs in React app embedding Sisense dashboard?
Hi everyone, I'm embedding a Sisense dashboard using an iframe inside a React-based platform. The iframe is rendered on a dedicated Insights tab route: insights. Every time I switch away from this tab and return to it, the iframe reloads, which causes unnecessary load time and loss of dashboard state (like applied filters or selections). My goal is to mount the iframe only once, keep it cached in memory, and just hide/show it based on tab switching, without triggering a reload. Here’s what I’m trying to achieve: Mount the Sisense iframe only once (on first visit to /insights) Persist it in memory even when navigating away Show it again without reloading when coming back Has anyone implemented this pattern or has best practices around iframe caching or persistent embedding of dashboards in a React environment? Would love to hear suggestions or recommended approaches from the community! Thanks!160Views0likes6CommentsImplementing web token access in spring boot
In this i tried to implement to render i-frame without login . Below i've attached my backend code for jwt token generation too. @Service public class SisenseTokenService { // Use the Shared Secret from your Sisense Admin panel private static final String SHARED_SECRET = "MY_secret_key"; public static String generateSisenseJWT(String userEmail) { long nowEpoch = Instant.now().getEpochSecond(); return Jwts.builder() .claim("sub", userEmail) // Sisense user email .claim("iat", nowEpoch) // Issued At .claim("jti", UUID.randomUUID().toString()) // Unique token ID .signWith(SignatureAlgorithm.HS256, SHARED_SECRET.getBytes(StandardCharsets.UTF_8)) .compact(); } } output for token: token:e decoded: { "sub": "platform@cscs.io", "tenantId": "system", "iat": , "jti": "" } in frontend - <iframe src={`https://sisense-dev.cscs-apps.com/app/main/dashboards/686bca7cef95f60033490c63?embed=true&web_access_token=e`} width="100%" height="100%" /> still it is not working why? kindly help asap, it is an important blockerSolved72Views0likes4CommentsHow to capture clicked metric value from a Pie Chart using Compose SDK?
Hi everyone, I'm embedding a Sisense dashboard using the Compose SDK (@sisense/sdk-ui) in my React app. I can render widgets using WidgetById and everything looks fine visually. What I'm trying to do now is capture user interaction with a Pie Chart — specifically, I want to know which pie slice the user clicked, such as the category name ("Active", "Closed", etc.). Here’s what I’ve tried so far: Added onWidgetClick and container onClick event handlers Used event.detail, event.target, etc. Tried a custom double-click workaround with setTimeout Checked the widget configuration for drill options and filters But none of these gave me the value or label of the clicked pie slice. The click event doesn't contain the metric/dimension value. Context: Using Compose SDK (@sisense/sdk-ui) Rendering widgets from dashboard via /api/v1/dashboards/:id/widgets Widget type: Pie Chart Rendering via WidgetById inside SisenseContextProvider What I need: Is it possible to get the clicked dimension or category from a pie chart using Compose SDK? If not, is there a workaround via classic embedding or JavaScript SDK? Any configuration or drill setup that enables this behavior? Thanks in advance for any guidance or examples. Would really appreciate help from someone who’s tackled this before!Solved74Views0likes3Comments