- How to show URL of a product
- Posted by Lotten Holm on May 20th, 2008
I have made an IFrame on the Product form and want to pass the "producturl"
of this product to this IFrame. Can someone help me with the syntax?
/Lotten
- Posted by Sam on May 21st, 2008
Hi Lotten
You will need to add the producturl attribute on the form. Once it is added
the following script can show the associated url in the iframe.
Write this script on product entities on load event,
if(crmForm.all.[iframename] != null)
{
crmForm.all.[iframename].src = crmForm.all.producturl.DataValue;
}
Hope this will help.
Sam
_______________
Inogic
Innovative Logic
Innovative solutions for your SME ERP/CRM products
E-mail: crm@inogic.com
Web: www.inogic.com
--------------------------
"Lotten Holm" <LottenHolm@discussions.microsoft.com> wrote in message
news:F4FB71BA-F505-4EAE-A55F-32E449225A29@microsoft.com...
- Posted by Lotten Holm on May 21st, 2008
Thanks, great!
"Sam" wrote: