Hiding Export Button from Quote List page
Summary:
In the CPQ Quote List page I want to hide the Export button from Action menu
Content (please ensure you mask any confidential information):
We were advised to use a JS customization but not sure how to apply it the right way as I have added the JS file to the file manager but no change was occured
Version (include the version you are using, if applicable):
Code Snippet (add any code snippets that support your topic, if applicable):
(function () {
function hideExport() {
document.querySelectorAll("oj-option").forEach(function(item) {
var a = item.querySelector("a");
if (a && a.textContent.trim() === "Export") {
Tagged:
0