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

Popular posts from this blog

Eclipse CDT variable colors in editor -

AJAX doesn't send POST query -

wpf - Custom Message Box Advice -