How to remove the add card button from visual task board?

Abinash10
Tera Contributor
 
2 ACCEPTED SOLUTIONS

Ravi Chandra_K
Kilo Patron
Kilo Patron

Hi @Abinash10 

Currently, out of box there is no way to disable the 'Add Card' button. 

refer: https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0717253

please hit the Thumb Icon and mark solution as Correct if it helped !!

Regards,

Ravi Chandra.

View solution in original post

Ravi Chandra_K
Kilo Patron
Kilo Patron

Hello @Abinash10 

Any feedback on my reply?

Help others to find a correct solution by marking the appropriate response as correct answer and helpful!!

 

Regards,

Ravi Chandra.

View solution in original post

6 REPLIES 6

Ravi Chandra_K
Kilo Patron
Kilo Patron

Hello @Abinash10 

Any feedback on my reply?

Help others to find a correct solution by marking the appropriate response as correct answer and helpful!!

 

Regards,

Ravi Chandra.

Marcelo Godoi
Tera Contributor

Hi Abinash10, I hope you are well.

 

I had the same problem. My customer used the visual task board (guided) on the incident table. New records were created in the table, but not through the catalog item. In doing so, the catalog item variables were not populated.

To solve the problem, I chose the ACL from the table (type create) and included the following script:

 

var url = gs.action.getGlideURI();

if(url.indexOf('vtb.do') == - 1 ){
answer = true;
}

The script examines the url, if it does not find 'vtb.do' it gives access to create a record in the table. This way, the add card button will not be available.


Mark Correct if this solves your problem and also mark Helpful if you find my answer valid based on impact.