![]() |
#1 |
Участник
|
CRM DE LA CREME! Point a IFrame to a external website
Источник: http://crmdelacreme.blogspot.com/201...ebsite_18.html
============== Microsoft Dynamics CRM allows you to access external web sites from within forms using IFRAMES (Inline Frames). You can configure the IFRAME to take information from the parent record. A pretty standard use of this is a Web tab on the Account form where the Account’s web site URL is passed to the IFRAME and the web site is available from a Web tab. To do this, one sets up a little code for the form On Load event that puts the Accounts web site URL into the IFRAME’s URL. It’s actually pretty simple. Here is the code (assumes you already know how to set up an IFRAME). IFRAME_WebSite is the name of the IFRAME and .src references the URL it uses. // Load web site URL { var AccountURL = crmForm.all.websiteurl.DataValue; if (AccountURL != null) { crmForm.all.IFRAME_WebSite.src = AccountURL; } } Источник: http://crmdelacreme.blogspot.com/201...ebsite_18.html
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
![]() |
#2 |
Moderator
|
Спасибо, Капитан Очевидность
__________________
http://fixrm.wordpress.com, снятие/наведение порчи. Быстро, дорого, гарантия. ![]() ![]() |
|
|
|