Home Advanced Request Offering
Options

Where is watchlist? / Remove "add me to watchlist" ?

Hello

We only use the Advanced Request Offering. We do not use the Analyst Portal.

When an end user looks at his request in the portal, he can click on the task "add me to watchlist".

How can I use the watchlist without the analyst portal license?
Where's the watchlist?

How can I hide the task "add me to watchlist"? (displaynone; ???)

Thanks for your help.

Answers

  • Options
    James_AtanceJames_Atance Cireson Support Advanced IT Monkey ✭✭✭
    Hey Adrian,

    You can simple hide the Task by adding the below code to your custom.js file within the CustomSpace folder:

    app.custom.formTasks.add('Incident', null, function (formObj, viewModel) { formObj.boundReady(function () { if (!session.user.Analyst) { $( ".taskmenu li:contains('Add Me To WatchList')" ).hide() } }); }); 


Sign In or Register to comment.