Dynamics 365 – setSubmitMode in JavaScript

Leave a comment

In Dynamics 365, setSubmitMode allows you to define for a field whether it is saved to the database.

For example, let’s say on the Account we do not want the Phone field saved when the user presses save on the form. To do this, we can create a web resource and add it to the OnLoad event of the Account form.

Note there are 3 options:

  • never
  • always
  • isdirty

We will set the field to “never”:

function OnLoad()) {
   Xrm.Page.getAttribute("telephone1").setSubmitMode("never");
}

Enter a new account and enter a phone number:

Click Save. After saving, the screen will refresh and the field will show as blank, i.e. not saved:

For more information: https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/clientapi/reference/attributes/setsubmitmode

THANKS FOR READING. BEFORE YOU LEAVE, I NEED YOUR HELP.
 

I AM SPENDING MORE TIME THESE DAYS CREATING YOUTUBE VIDEOS TO HELP PEOPLE LEARN THE MICROSOFT POWER PLATFORM.

IF YOU WOULD LIKE TO SEE HOW I BUILD APPS, OR FIND SOMETHING USEFUL READING MY BLOG, I WOULD REALLY APPRECIATE YOU SUBSCRIBING TO MY YOUTUBE CHANNEL.

THANK YOU, AND LET'S KEEP LEARNING TOGETHER.

CARL

https://www.youtube.com/carldesouza

 

ABOUT CARL DE SOUZA

Carl de Souza is a developer and architect focusing on Microsoft Dynamics 365, Power BI, Azure, and AI.

carldesouza.comLinkedIn Twitter | YouTube

 

Leave a Reply

Your email address will not be published. Required fields are marked *