InfinityJS is a set of wrappers around BBUI intended to ease access to CRM services from Custom UIModel or Action Javascript.
Place dist/infinityjs.min.js
in your custom HTML folder and include as you would any other Javascript dependency.
<div id="#MAP#MyCustomUIModel">
...
</div>
<!--SCRIPT:/browser/htmlforms/custom/js/infinityjs.min.js-->
<c:ExecuteCLRAction>
<c:ScriptIdentifier Url="browser/htmlforms/custom/actions/MyCustomAction.js"
ObjectName="MyOrg.Actions.MyCustomAction">
<c:Dependencies>
<c:Dependency Url="browser/htmlforms/custom/js/infinityjs.min.js" />
</c:Dependencies>
</c:ScriptIdentifier>
</c:ExecuteCLRAction>
// Full API
var InfinityJS = BBUI.ns('InfinityJS');
// Just a piece
var datalist = BBUI.ns('InfinityJS').DataList;
Arguments
dataListId
- The ID of the data list to load.contextRecordId
- The ID of the data list's context record.options
An object that my contain any of the following properties:pageRecordId
: The ID of the page's context record where the data list is rendered.parameterFormSessionId
: The ID of the form session that provides parameters to the data list.parameters
: An array of objects containing name and value properties used to filter the data list results.returnFlotData
: A flag indicating the data should be returned in a format readable by flot charts.returnFormattedValues
: Flag indicating the data list should return formatted values along with the raw values.scope
: See class description for more information.userSettingsPath
: The path used as the key to store user information about the data list, such as column sizes or the last filter values used.
Example
datalist.load('D38B7630-A6F8-4F87-82C1-CAA49AFC04F5').then(function(result) {
// result is
// {
// rowCount: 485,
// rowCountFormatted:"485",
// rows: [
// { values: ["3506b24f-ff4e-42a1-9e89-73586f6cb2c2", "A Site", "The best site"] },
// ...
// ]
// }
});
### loadAsObjects(dataListId, [contextRecordId], [options]) Combines [`load`](#load) and [`getOutputDefinition`](#getOutputDefinition) to return the datalist as a collection of objects.
Example
No context or parameters
datalist.loadAsObjects('D38B7630-A6F8-4F87-82C1-CAA49AFC04F5').then(function(result) {
// result is
// [
// { ID: "3506b24f-ff4e-42a1-9e89-73586f6cb2c2", Name: "A Site", Description: "The best site" },
// ...
// ]
});
With context
var contextId = '00000000-0000-0000-0000-000000000000';
datalist.loadAsObjects('D38B7630-A6F8-4F87-82C1-CAA49AFC04F5', contextId).then(function(result) {
// result is
// [
// { ID: "3506b24f-ff4e-42a1-9e89-73586f6cb2c2", Name: "A Site", Description: "The best site" },
// ...
// ]
});
With parameters and no context
var listParameters = [
{ name: 'LASTNAME', value: 'Jones' },
{ name: 'AGE', value: '42' }
];
datalist.loadAsObjects('D38B7630-A6F8-4F87-82C1-CAA49AFC04F5', null, {parameters: listParameters}).then(function(result) {
// result is
// [
// { ID: "3506b24f-ff4e-42a1-9e89-73586f6cb2c2", Name: "A Site", Description: "The best site" },
// ...
// ]
});
### getOutputDefinition(dataListId, [options]) Promise based wrapper for the WebShellService dataListGetOutputDefinition.
Example
datalist.getOutputDefinition('D38B7630-A6F8-4F87-82C1-CAA49AFC04F5').then(function(outputDefinition) {
// outputDefinition is
// {
// primaryKeyFieldId: "ID",
// outputFields: [
// { caption: "ID", dataType: 8, displaySequence: 0, fieldId: "ID", isHidden: "true", textAlign: 0 },
// ...
// ]
// }
});
### showAddForm(dataFormInstanceId, [defaultValues]) Wraps `show` without a `recordId`.
Example
var addFormId = '00000000-0000-0000-0000-000000000000';
var addFormParameters = [
{ name: 'LASTNAME', value: 'Joe' },
{ name: 'FIRSTNAME', value: 'Miller' }
];
dataform.showAddForm(addFormId, addFormParameters).then(function(result){
// result is where recordId is the inserted recordId.
// Todo: see if return values can be populated.
// { recordId: "99CEC916-A5F5-47E0-914A-ADE479827DE3",
// savedDataFormItemXml: undefined,
// dataFormItemKey: undefined,
// returnValues: undefined
// }
});
### showEditForm(dataFormInstanceId, recordId, [defaultValues]) Wraps `show`, setting the `recordId` in the `options`.
Example
var editFormId = '00000000-0000-0000-0000-000000000000',
recordId = '5a83d78c-2417-4694-8cf3-c5ca1814447e';
dataform.showEditForm(editFormId, recordId).then(function(result){
// result is
// { recordId: "5a83d78c-2417-4694-8cf3-c5ca1814447e",
// savedDataFormItemXml: undefined,
// dataFormItemKey: undefined,
// returnValues: undefined
// }
});
### load Wraps `BBUI.webshell.Service.dataFormLoad`
Example
var viewFormId = '00000000-0000-0000-0000-000000000000',
recordId = '5a83d78c-2417-4694-8cf3-c5ca1814447e';
dataform.load(viewFormId, recordId).then(function (result) {
// result is an object representing a single row/view data form result.
// {
// ID: "5a83d78c-2417-4694-8cf3-c5ca1814447e"
// DESCRIPTION: "Gifts to this account will be used to support Indiana University."
// DESIGNATIONID: "35287a05-6672-4ddb-8345-236ea6e88ed5"
// ...
// }
});
Example
var recordOperationId = '00000000-0000-0000-0000-000000000000',
recordId = '00000000-0000-0000-0000-000000000000',
parameters = [
{name: 'PARAM1', value: 'Value 1'},
{name: 'PARAM2', value: 'Value 2'}
];
recordoperation.do(recordOperationId, recordId, parameters).then(function(result){
// result is
//
});
### doWithConfirm(operationId, [recordId], [parameters]) Same as [`do`](#do) only with a user confirmation first. ### toast(subject, message) Triggers a black gritter message.
Example
ui.toast('Good job', 'Here is a message.');
### beginWait() Wrapper for call to `BBUI.forms.Utility.beginWait`
Example
ui.beginWait();
### endWait() Wrapper for call to `BBUI.forms.Utility.endWait`
Example
ui.endWait();
### confirm(message, yesCallback, noCallback) Creates a yes/no confirmation dialog.
Example
ui.confirm('Are you sure?', function(){
// Yes, they are sure.
}, function() {
// No, not sure.
});
### gotoPage(pageId, [tabId], [recordId], [options]) Navigates to the specified page.
Example
// Goes to a Constituent's page. Change the 3rd recordId parameter to match a real GUID.
ui.gotoPage('88159265-2b7e-4c7b-82a2-119d01ecd40f', null, '62993c2c-9c45-43e4-a40d-986e008fb855');
### refreshPage() Refreshes the current page.
Example
ui.refreshPage();
### mailTo(address, subject, body) Opens the users default email client as if they'd clicked a `mailto` link. Lets you programatically open an email the user will send.
Example
ui.mailTo('someperson@email.com', 'My Email Subject', 'Email body - text only.');
- CodeTable support
- SimpleDataList support
- ListBuilder support (API would look like DataList)
- Hook into Section UI actions such as refresh.