Trigger USD event from CRM Hosted Control’s Jscript
In one of our requirement we had to trigger a USD Event from CRM Hosted Control’s onchange event of an option set.
Below are the steps to invoke USD event from option set’s ‘onchange’ event.
- Assume your USD event name is “USDOnChange”
- In my CRM Hosted Control’s onchange event placed this statement
function TriggerUSDOnchangeEvent() {
window.open(“http://event/?eventname= USDOnChange“);
}
🙂
Hi Rajeev,
I am opening two related tabs in a session in usd at a time. For example i am opening session for account and same session related address will be automatically loaded.
My requirement was if i am going to account tab call script related with account should be shown and if i am clicking on address tab address call script should be laoded automatically.
I have loaded two call script but if initially account script is open it should be visible for both the tab which should not be.
Can you help me to solve this issue.