Esconder uma secção de um formulário no MSCRM 4.0
function OnCrmPageLoad() { //Hide the Second Section in the first Tab ToggleSection( 0 , 1 , “none” /* “inline” */); }
// Tabs and Section Collections are zero based function ToggleSection( tabIndex , sectionIndex , displayType ) { var sec = document.getElementById( “tab” + tabIndex ); sec.childNodes.rows.style.display = displayType; }
//Entry Point OnCrmPageLoad();