Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // Example to extends the custom create view instead of the base create view
  2. // Path : custom/modules/<module>/clients/base/views/create-nodupecheck/create-nodupecheck.js
  3. ({
  4. // syntax to custom views: <module>CustomCreateView
  5. // syntax to base views: CreateView
  6. extendsFrom: 'ContactsCustomCreateView',
  7.  
  8. initialize: function(options) {
  9. this._super("initialize", [options]);
  10. this.enableDuplicateCheck = false;
  11. }
  12. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement