We disabled the new Simply Ask option in the Sisense configuration but it's still showing as a disabled option when you click a dashboard's context menu. We submitted this as a defect but were told that it's "by design". It's by design to show an option that's been disabled? We don't want users to request the option be turned on, as the hover text suggests.
Hide the Simply Ask option when it's disabled
2 Comments
- rapidbisupportData Pipeline
Hi Jim_SpeedLine,
You could use this script in a plugin or a dashboard script to remove the option from the menu.
prism.on('beforemenu', (a, b) => { b.settings.items = b.settings.items.filter((i) => { return i.id !== "simplyAskMenu"}) })
This beforemenu event related to the prism class is documented here:
Prism Global | Sisense Developers
Hope this works for you!
Thanks,
Daniel
RAPID BI
RAPID BI - Sisense Professional Services | Implementations | Custom Add-ons
- Jim_SpeedLineCloud Apps
Thanks, Daniel, we'll give that a try.
Jim Allison