Dynamics 365 Updating Readonly Field – setSubmitMode()
To update readonly fields with Javascript simply use setSubmitMode() after setValue() function.
always: The data is always sent with a save.
never: The data is never sent with a save. When this value is used, the column(s) in the form for this column cannot be edited.
dirty: Default behavior. The data is sent with the save when it has changed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[…] the form for this column cannot be edited. dirty: Default behavior. The data is sent with the … Continue reading Dynamics 365 Updating Readonly Field -setSubmitMode() Read Complete Post and Comments $(document).ready(function(){ if(''!='') { $(".post […]
Leave a comment