Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics 365 | Integration, Dataverse...
Answered

Is there a way to write event handler into JavaScript directly?

(0) ShareShare
ReportReport
Posted on by 725

I wrote below Java Script and add the functions manually to form load, and product field change event under customer asset entity.  The code works, but I see other codes in form libraries works without the need to enter each functions manually through form customization UI, how do I do this?

function onLoad(executionContext){
	updateCustomerAssetName(executionContext);
}

function msdyn_product_onChange(executionContext){
	updateCustomerAssetName(executionContext);
}

function updateCustomerAssetName(executionContext){
var formContext = executionContext.getFormContext();
var product=formContext.getAttribute("msdyn_product").getValue()[0].name;
formContext.getAttribute("msdyn_name").setValue(product);
}

  • TylerS.Dev Profile Picture
    TylerS.Dev 725 on at
    RE: Is there a way to write event handler into JavaScript directly?

    This is perfect, I just need to add null handler now, thank you so much for your advise.

  • Verified answer
    a33ik Profile Picture
    a33ik 84,325 Most Valuable Professional on at
    RE: Is there a way to write event handler into JavaScript directly?

    Hello,

    You can attach handler to field during onload like following:

    function onLoad(executionContext){
    	updateCustomerAssetName(executionContext);
    
    	var formContext = executionContext.getFormContext();
    	var product=formContext.getAttribute("msdyn_product");
    	product.addOnChange(updateCustomerAssetName);
    }
    
    function updateCustomerAssetName(executionContext){
    	var formContext = executionContext.getFormContext();
    	var product=formContext.getAttribute("msdyn_product").getValue()[0].name;
    	formContext.getAttribute("msdyn_name").setValue(product);
    }

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Daivat Vartak – Community Spotlight

We are honored to recognize Daivat Vartak as our March 2025 Community…

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Kudos to the February Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 292,516 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 231,409 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Product updates

Dynamics 365 release plans