HI WELCOME TO SIRIS

Lock or Unlock Business process flow fields using JavaScript in CRM

Leave a Comment

 Use the below syntax to lock or unlock the business process flow fields in a CRM record using javascript,

Lock:

Xrm.Page.getControl(“header_process_FieldSchemaName”).setDisabled(true);

Unlock:

Xrm.Page.getControl(“header_process_FieldSchemaName”).setDisabled(false);

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.