Advertisement
RyanFarley

Untitled

Nov 27th, 2017
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.     Customer FX Activity Module
  3.     See license and usage information at https://github.com/CustomerFX/FX.ActivityModule.JS
  4.  
  5.     Copyright (c) 2017 Customer FX Corporation
  6.     http://customerfx.com
  7. */
  8.  
  9. define([
  10.     'dojo/_base/lang'
  11. ],
  12. function(
  13.     lang
  14. ) {
  15.  
  16.     return {
  17.  
  18.         configurations: [
  19.        
  20.             {
  21.                 type: 'lookup',
  22.                 entity: 'SiteLocation',
  23.                 bind: {id: 'SiteLocationID', text: 'SiteLocationName'},
  24.                 includeTabColumn: true,
  25.                 fields: [
  26.                     {field: 'Description', label: 'SiteLocation'},
  27.                     {field: 'Account.AccountName', label: 'Account'}
  28.                 ]
  29.             }
  30.            
  31.         ]
  32.  
  33.     };
  34.  
  35. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement