Sunday, February 21, 2010

Hiding a section using java script in MS CRM 4.0

Hidding a section which contains an IFrame :
var sec = document.getElementById( "tab5"  );
            sec.childNodes[0].rows[ 1 ].style.display = 'none';
           


=======================================================================
Hiding a section with attributes on it :


crmForm.all..parentElement.parentElement.parentElement.style.display='none';



No comments:

Post a Comment