When I try to create a window object, I always get “TypeError: this._parent.config is undefined”. I am using DHTMLX Suite in a Joomla module. DHTMLX Suite7 is referenced in document header:
The javascript code to create the window:
dhxWindow = new dhx.Window( { header:“some text”, modal:true, movable:true } );
This error is displayed when the above code is executed:
Uncaught TypeError: this._parent.config is undefined
isVisible https://cdn.dhtmlx.com/suite/edge/suite.js:21
isVisible https://cdn.dhtmlx.com/suite/edge/suite.js:21
paint https://cdn.dhtmlx.com/suite/edge/suite.js:21
attach https://cdn.dhtmlx.com/suite/edge/suite.js:21
_initUI https://cdn.dhtmlx.com/suite/edge/suite.js:21
h https://cdn.dhtmlx.com/suite/edge/suite.js:21
How can I get dhx.Window working? Thanks in advance for your advice.