In de OnLoad:
//FILTEREN VAN CONTACTPERSONEN O.B.V. KLANTID
ContactpersonFilter = function()
{
if(crmForm.all.cov_bedrijfid.DataValue != null)
{
crmForm.all.customerid.lookupbrowse = 1;
crmForm.all.customerid.additionalparams = "search=<fetch mapping='logical'><entity name='contact'><all-attributes /><filter type='and'><condition attribute='parentcustomerid' operator='eq' value='" + crmForm.all.cov_bedrijfid.DataValue[0].id + "'/></filter></entity></fetch>";
}
}
ContactpersonFilter()
In de OnChange:
//LEEGMAKEN CONTACTPERSOON BIJ WIJZIGEN BEDRIJFSID
crmForm.all.customerid.DataValue = null;
//FILTEREN VAN CONTACTPERSONEN O.B.V. KLANTID
ContactpersonFilter();
Geen opmerkingen:
Een reactie posten