Connect, learn, and share with thousands of IBM Cognos Analytics users!
define([], function() { 'use strict'; var SampleAction = function(){ this.isVisible = function(context, target) { return target.options[0].type === 'report'; }, this.execute = function(context, target) { var info = 'This sample menu item extension opens an alert. \nThe alert contains information about the selected report. \n\nType: ' + target.options[0].type + '\nName: ' + target.options[0].name + '\nID: ' + target.options[0].id; alert(info); } }; return SampleAction; });