How to manage SSRM Bookmarks among Info Bookmarks??
We have an implementation of Logi Info where we show Info Bookmarks in our side menu (essentially an enhanced Report Center menu). We are looking to incorporate SSRM (InfoGo Self-Service) into our Info application but now the Bookmark menu is getting cluttered with SSRM Bookmarks.
Has anyone incorporated Info/SSRM, and if so, how do you keep Bookmarks organized between the applications?
-
As a follow-up to my initial question - We ended up setting up InfoGo/SSRM as a standalone application embedded inside of our Info application using the configuration recommended here - https://devnet.logianalytics.com/hc/en-us/articles/4402744897559-Embedding-InfoGo.
Since we are embedding our Info app in an iframe already, and then using another iframe embedded in Info for InfoGo, we added some additional controls. One thing that is working well for us is the iframeresizer.js - https://github.com/davidjbradshaw/iframe-resizer.
We embedded the iframeResizer.min.js in our Info Master.
We embedded the iframeResizer.contentWindow.min.js in our InfoGo.goShared report.In our Info page (where we host the InfoGo iframe), we added the following:
<script>iFrameResize({log:false,
autoresize:true,
checkOrigin:false,
heightCalculationMethod:'documentElementScroll',
widthCalculationMethod:'scroll',
sizeWidth:true}, '#myiframe')</script>I recommend that you start with "log:true" to confirm functionality. The height and width have several options; you may need to cycle through them to determine which works best for your implementation.
I have "checkOrigin:false" set in my localhost because my Info and InfoGo are running to separate ports (cross-origin), but our UAT and Production environments will be on the same origin (xyz.application.com and xyzssrm.application.com), so it isn't needed for deployment.
Cheers!
0
Please sign in to leave a comment.
Comments
1 comment