Quantcast
Channel: Microsoft Dynamics CRM Forum - Recent Threads
Viewing all articles
Browse latest Browse all 87499

RE: (CRM 4.0) Hiding Custom ISV Toolbar buttons and keeping them hidden when resizing window

$
0
0

I am suggesting a Javascript to hide unneeded ISV Buttons. It will go like this:

// hide ISV buttons that don't apply

function hideISVButton(buttonTitle) {

  var comps = document.getElementsByTagName('li');

  for (var i = 0; i < comps.length; i++) {

    if (comps[i].title == buttonTitle)

    {

      comps[i].style.display = "none";

      break;

    }

  }

}


Viewing all articles
Browse latest Browse all 87499

Trending Articles