Advertisement
RyanFarley

Resize Lookups in Infor CRM

Mar 12th, 2018
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. require([
  2.     'dojo/aspect',
  3.     'Sage/UI/SDataLookup'
  4. ],
  5. function (
  6.     aspect,
  7.     SDataLookup
  8. ) {
  9.     aspect.before(SDataLookup.prototype, 'showLookup', function () {            
  10.         this.dialogWidth = 900;
  11.         this.dialogHeight = 600;
  12.     });
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement