censusbv / DitsNews

MODx Revolution Newsletter component
10 stars 5 forks source link

Another Javascript error at newsletters.grid.js #13

Open belbiy opened 13 years ago

belbiy commented 13 years ago

on line 104, Ext.getCmp(formId).doLayout(false, true);

Uncaught TypeError: Cannot call method 'doLayout' of undefined

It seems that its getting wrong formId. Now - 'ditsnews-window-newsletter-create', but it needs to be 'ext-comp-1103'

belbiy commented 13 years ago

FIX - on line 118, you need to add:

Ext.applyIf(config,{ id: 'ditsnews-window-newsletter-create', title: _('ditsnews.newsletters.new')

that fixes it )