Display Associate View in IFrame
/********** IFrame Onload *****************/
if(crmForm.FormType !=1)
{
var pPFrame = document.all.IFRAME_ProductPurchase;
var pPWindow = document.frames[‘IFRAME_ProductPurchase’];
document.all.IFRAME_ProductPurchase.src=”/userdefined/areas.aspx?oId=” + crmForm.ObjectId + “&oType= ” + crmForm.ObjectTypeCode + “&security=” + crmFormSubmit.crmFormSubmitSecurity.value + “&tabSet=new_contact_new_customerproductpurchase”;
pPFrame.name = pPFrame.id;
pPFrame.style.borderWidth = ‘0px’;
pPFrame.onreadystatechange= function()
{
if(pPWindow.document.readyState == ‘complete’)
{
pPWindow.document.body.style.backgroundColor = ‘#eef0f6’;
pPWindow.document.getElementsByTagName(‘TABLE’)[0].style.borderLeftWidth = ‘0px’;
}
}
}
else
{
document.all.IFRAME_ProductPurchase.src=”/aspx/IFrameMassage.htm”;
}
/*********** IFrame Code Ends Here **********************/