Quantcast
Channel: Super Feed from MSCRM Technical Insight by Jonathan Nachman
Viewing all articles
Browse latest Browse all 130

Going Fishin! - Getting data from within a IFRAME on to a CRM form

$
0
0

Okay so we have a iframe on a form connecting to a basic version of a accounting system.

We needed to find a way to update CRM with certain fields from this page, and place it on our CRM form.

The following code worked a treat.

{codecitation style="brush: javascript;"}var QueryString= crmForm.all.IFRAME_NAME_OF_YOUR_IFRAME.contentWindow.document.getElementById('NAME_OF_THE_PAGES_ID').value;

if (QueryString)
{
crmForm.all.YOUR_FIELD_ON_YOUR_FORM.DataValue = QueryString;
}
else
{
alert("Unable to retrieve xxx, Please check it exists or contact your administrator!");
}{/codecitation}

Enjoy

Jonathan


Viewing all articles
Browse latest Browse all 130

Trending Articles