dynamics crm - MS CRM 4.0 Certain fields appear only if a certain answer is selected? -
I would like to know whether it is possible to make some areas invisible, unless the questions associated with them are selected in the Yes to be done. Then pop up other areas to go in more detail. I'm not sure that CRM can do this, but if I want to know how.
The following is entered on your on-load function
CrmForm.all.field.style.display = 'none'; CrmForm.all.field_c.style.display = 'none';
Then it has been put to show this field on the on-change event of the field that you are monitoring:
crmForm.all .field.style.display = 'in line'; CrmForm.all.field_c.style.display = 'inline';
Comments
Post a Comment