If you just want to change how the field is labeled on the form, you can do:
Xrm.Page.getControl("ControlName").setLabel("New Label");
var formContext = executionContext.getFormContext();
formContext.getControl("new_name").setLabel("Name");
Recently, we had to write a small utility—a console application—that would go and update a bunch of existing records in our Dynamics 365 e...
No comments:
Post a Comment