- removing predefined locked fileds
- Posted by eliran on February 3rd, 2007
do someone know by a chance how to remove predefined locked fileds
from some forms (like address fileds in the Order form) ?
- Posted by evgeniy_pmsoft on February 4th, 2007
On Feb 4, 1:05 am, "eliran" <eliran...@gmail.com> wrote:
You can't remove, but can hide them using onLoad event script like
this:
crmForm.all.ordernumber_c.style.display="none";
crmForm.all.ordernumber_d.style.display="none";
If there are a lot of fields, that you want to hide, you can put all
of them and hide the whole tab:
crmForm.all.tab4Tab.style.display="none";
Pay attention at the number of the tab in that sample. Actually
numbering starts from zero, so the 5th tab will be hided.
Similar Posts
- removing locked User account folders (Microsoft Windows) by eleete@gmail.com
- removing locked User account folders (Microsoft Windows) by Pegasus \(MVP\)
- Removing Locked Items from my Hard Drive (And Should I?) (Computer Security) by cmashieldscapting@hotmail.com
- REMOVING A WATERMARK LOCKED IN TO THE MASTER TITLE (Windows XP) by victoria2dc
- Custom Fileds (Windows CRM) by Robert

