Adding customization section to ApplicationModule.js


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. loadCustomizations: function() {
  2. Mobile.SalesLogix.ApplicationModule.superclass.loadCustomizations.apply(this, arguments);
  3. //Here you call the items from below. You can extend this to any entity in the system
  4. this.registerAccountCustomizations();
  5. },
  6. registerContactCustomizations: function() {
  7. //Add your items here
  8. },
  9. registerAccountCustomizations: function() {
  10. //Add your items here
  11. },

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.