Tech Support > Microsoft Windows > Windows CRM > iFrame - passing url and displaying website
iFrame - passing url and displaying website
Posted by jerry on November 25th, 2005


I am working with the new iFrame feature in 3.0 and I am trying to figure out
how to use the iframe feature so that when a website address is entered into
a form field, the iframe then uses that field data to display the website in
that form.

Any suggestions?

Jerry

Posted by Arne Janning on November 28th, 2005


Hi Jerry!

"jerry" wrote
See the example in the SDK which you could use in an onChange-event:

var AccountURL = crmForm.all.websiteurl.DataValue;

if (AccountURL != null)
{
crmForm.all.IFRAME_test.src=AccountURL;
}

Microsoft CRM 3.0 SDK - Preliminar
http://www.microsoft.com/downloads/d...3-bd14b74308c5

--> Client Programming Guide --> Client Side Scripting --> Form Object
Model --> IFrame Support

Cheers

Arne Jannning


Similar Posts