Skip to content

Instantly share code, notes, and snippets.

@DynCon365
Created April 4, 2018 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DynCon365/9975a0c5d74abc12d12803e295859c8e to your computer and use it in GitHub Desktop.
Save DynCon365/9975a0c5d74abc12d12803e295859c8e to your computer and use it in GitHub Desktop.
Dynamics 365/CRM | Get the value of a Bit field
// Get the value of a custom "Is Decision Maker" checkbox on a Contact
var decisionMaker = Xrm.Page.data.entity.attributes.get("new_isDecisionMaker").getValue();
// checked will return 1; unchecked will return 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment