Previous Thread

7/25/2006 7:53:01 PM    Hiding Attributes
Hi CRMers, 
 
How do I hide or make an attibute invisible? 
 
Thanks, 
 
Dixon



7/26/2006 1:13:12 AM    Re: Hiding Attributes
Hi, 
 
The following JavaScript in the Form on which you wish to hide 
 
"attributes" will hide the "customerid" attribute's controls: 
 
crmForm.document.getElementById('customerid_d').style.display = "none"; 
 
crmForm.document.getElementById('customerid_c').style.display = "none"; 
 
Hope this helps! 
 
-Ernst 
 
Dix wrote: