Plugin - customLogoLink
Plugin - Set Custom Link Overriding default In Top Left Logo Icon Description This plugin allows changing the link of the top-left Sisense or white-labeled logo on the server's home page to a custom URL. Disabling the plugin will restore the logo link to its default behavior. Installation To install this plugin, download and unzip the attachment. Then drop the disableLogoLink folder into your plugins folder (/opt/sisense/storage/plugins). Enable the plugin on the Add-ons tab in the Admin section, wait for the plugin to build, and the plugin will be enabled. The plugin API and file management UI can also be used. Config Options - URL - URL navigated to on logo click - iframeLogoLinkChangeParentAddress - Boolean option allows logo click to change the parent address of a Sisense Iframe. It should be noted that JTD uses an iframe Notes This plugin is similar to the DisableLogoLink plugin which is documented here this page includes notes on creating plugins similar to this one. Learn more: https://docs.sisense.com/main/SisenseLinux/pre-post-build-plugins.htm https://academy.sisense.com/master-class-advanced-dashboards-with-plug-ins-and-scripts353Views1like0CommentsHow to configure more than one JTD (JumpToDashboard) prefix in your app
How to configure more than one JTD (JumpToDashboard) prefix in your app Objective This guide provides a solution to the use case when you need to have 2-different prefixes for JumpToDashboard plugin. This solution could be useful if you want to display the drill dashboards with the specific prefixes for a specific group of users or keep different dashboard prefixes for different customers within one system. The global plugin setting for the whole application is configured on the config.js file level while the same parameters defined in the widget script can override this global setting. This is described in the guide JumpToDashboard Plugin - How to Use and Customize. A widget script configuration allows us to define the JTD prefix per widget which helps to achieve this goal. How to implement it? Firstly, you need to define the "drilledDashboardPrefix" under the Admin tab > System Management (under Server & Hardware) > File Management > plugins > jumpToDashboard > js > config.js: The "_drill" prefix setting will be applied for all users in the system. Secondly, if you need to define a specific prefix for a specific dashboard, you must create a drill dashboard with this prefix. For example, let's use "_JTD". Then you need to use the following JavaScript code on the widget level (that you'll need to jump from) in its edit mode -> clicking the 3 dots menu -> Edit Script: prism.jumpToDashboard(widget, { drilledDashboardPrefix : "_JTD"}); After that, please save the changes to the widget by pressing the "Apply" button and check the "Jump to dashboard" menu in the edit mode: As a result, you will have a global setting for all users with "_drill" prefix while also having an option to define a different prefix for the dashboards you need. Additional resources: JumpToDashboard - Troubleshooting the most common configuration issues JumpToDashboard - Marketplace1.2KViews1like0Comments