-
-
Notifications
You must be signed in to change notification settings - Fork 449
Closed
Description
With OpenMage 20.1.0-rc4, when I go to Products > Any Product > Categories, at store view level, I get the following error: ownerTree.container is undefined
magento-lts/js/extjs/ext-tree-checkbox.js
Lines 65 to 69 in 1431628
render : function(bulkRender){ | |
var n = this.node; | |
var targetNode = n.parentNode ? | |
n.parentNode.ui.getContainer() : n.ownerTree.container.dom; /* in later svn builds this changes to n.ownerTree.innerCt.dom */ | |
if(!this.rendered){ |
My 10 seconds solution is to replace, line 67/68 by: var targetNode = n.parentNode ? n.parentNode.ui.getContainer() : (n.ownerTree.container ? n.ownerTree.container.dom : n.ownerTree.innerCt.dom);
But I'm not sure why, and if it's only me.
Metadata
Metadata
Assignees
Labels
No labels