项目作者: dynamicscode

项目描述 :
A JavaScript library for Microsoft CRM Portals
高级语言: JavaScript
项目地址: git://github.com/dynamicscode/XrmPortalJS.git
创建时间: 2017-11-02T21:59:13Z
项目社区:https://github.com/dynamicscode/XrmPortalJS

开源协议:GNU General Public License v3.0

下载


Overview

A JavaScript library for Power Apps portals (previously Microsoft CRM Portals). To write basic functions like show and hide in Power Apps portals, we need to rely on jQuery for extensive manipuliation of DOM. The library provides these functionality in simple, clear and readable syntaxes. The library will help developers who are familar with Power Apps client script.

Command samples

Get value of a field

  1. Xrm.Portal.Form.get(fieldName).getValue();

Set value of a field

  1. Xrm.Portal.Form.get(fieldName).setValue(object);
  2. Xrm.Portal.Form.get(fieldName).setValue(id, name, entityLogicalName); //For lookup

Show/hide a field

  1. Xrm.Portal.Form.get(fieldName).setVisible(bool);

Disable/enable a field

  1. Xrm.Portal.Form.get(fieldName).setDisable(bool);

Set required of a field

  1. Xrm.Portal.Form.get(fieldName).setRequired(bool); //Default - a default validation and a default message
  2. Xrm.Portal.Form.get(fieldName).setRequired(bool, function, message); //A custom validation and a custom message

Attach/Remove OnChange event of a field

  1. Xrm.Portal.Form.get(fieldName).attachOnChange(callback);
  2. Xrm.Portal.Form.get(fieldName).removeOnChange();

Configure DateTimePicker options

  1. Xrm.Portal.Form.get(dateTimeFieldName).getData().options({options});
  2. Xrm.Portal.Form.get(dateTimeFieldName).getData().options({ sideBySide: true}); //To show date component and time component side by side
  3. Xrm.Portal.Form.get(dateTimeFieldName).getData().minDate(new Date()); //To disable selecting past date

Refer to more options here

Get a row count from current page of the sub-grid

  1. Xrm.Portal.Form.get(subGridName).getRowCountFromCurrentPage();

Enable a lookup to display its modal dialog on clicking anywhere in the lookup control

  1. Xrm.Portal.Form.get(lookupName).enableOneClick();

Quick View

Get JSON data from a quick view

  1. Xrm.Portal.Form.get(quickViewName).getValue();

Render as an AdaptiveCard

  1. Xrm.Portal.Form.get(quickViewName).renderAdaptiveCard(lookupName, adaptiveCardJSON, dataInJSON);

Method chaining

  1. Xrm.Portal.Form.get(fieldName).setValue(object).setVisible(bool).setRequired(bool);

Validations

Regular Expressions

  1. Xrm.Portal.Form.Validation.assertRegex(fieldName, RegEx, message, [isRequired])

Block past date

  1. Xrm.Portal.Form.Validation.denyPastDate(fieldName, message, [isRequired])

Block future date

  1. Xrm.Portal.Form.Validation.denyFutureDate(fieldName, message, [isRequired])

Compare main and sub. Main must be later than sub.

  1. Xrm.Portal.Form.Validation.compareDates(mainFieldName, subFieldName, message, [isRequired])

Set range to number

  1. Xrm.Portal.Form.Validation.setNumberRange(fieldName, min, max, message, [isRequired])

User

  1. Xrm.Portal.User.getAsync() => promise

Transform text fields to canvas

The method transforms a text field into a canvas, allowing users to draw lines or sign. Base64 string of canvas will be set to the underlying text field.

  1. Xrm.Portal.Form.get(fieldName).transformToCanvas();