Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dijit/_WidgetBase constructor throws "calling chained constructor" error DOJO Version 1.17.3 #202

Open
imdad000 opened this issue Nov 2, 2022 · 1 comment

Comments

@imdad000
Copy link

imdad000 commented Nov 2, 2022

I have got a Base class that inherits from [_WidgetBase,_TemplatedMixin] and there is not any Error during compile time but throws a "calling chained constructor" error at run time

[define( ["dojo/_base/declare", "dijit/_WidgetBase", "dijit/_TemplatedMixin","dijit/_WidgetsInTemplateMixin","dojo/dom", "dojo/text!./templates/Menu.html"], function(declare ,_WidgetBase , _TemplatedMixin,_WidgetsInTemplateMixin,dom,template) {
return declare("com/ibm/b2b/ebics/client/ui/widgets/common/menu/Menu",[_WidgetBase,_TemplatedMixin], {

    templateString: template,
    constructor: function(thisVarBase){
    
    this.thisVarBase=thisVarBase;
    this.thisVarBase.debugMessage("com.ibm.b2b.ebics.client.ui.widgets.common.menu.Menu cons Entry");
    this.restURLEndpoint=this.thisVarBase.restURLEndpoint;
    console.log("menu User2");
    this.widgetId=this.thisVarBase.widgetId;
    this.menuWidgetLoaderId=null;
    this.HVUZobject=null;
    this.thisVarBase.debugMessage("com.ibm.b2b.ebics.client.ui.widgets.common.menu.Menu cons Exit");
    console.log("menu User3");
},

// @Override
postCreate : function() {
    console.log(" menu User4");
    this.inherited(arguments);
}

});
});

I have added console.log and the code went fine till console.log("menu User3") and after that dojo internally calls some chained constructor and throws Error

Dojo 38
_attrToDom
forEach
_attrToDom
set
_applyAttributes
create
postscript
chainedConstructor
showMenu
onLoad
constructor
chainedConstructor
construct
thelist
map
_instantiate
p
signalListener
then
parse
hitch
onEvent
handleDomReady
processQ
detectReady
on
domReady
runFactory
execModule
execModule
execModule
execModule
contextRequire
guardCheckComplete

@bitranch bitranch transferred this issue from dojo/widgets Jan 16, 2023
@wkeese
Copy link
Member

wkeese commented Jan 26, 2023

Well, this is wrong:

// @Override
postCreate : function() {
    console.log(" menu User4");
    this.inherited(arguments);
}

You shouldn't have the this.inherited() call in postCreate(). It happens automatically.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants