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");
When you’re working with Dynamics 365, you may have encountered a limitation when it comes to retrieving records. The maximum number of re...
No comments:
Post a Comment