input reference selector in mendix 4.4.0

4
In mendix 4.2.0 the input reference selector worked correct on view-windows. In mendix 4.4.0 the view-window is not loading data at all. Does anybody have a solution? (a workaround is to replace de widget with the actual attribute, but that is not a real solution.
asked
1 answers
2

The problem is that the widget sometimes receives a disable-message before it is created.

Solution is

_setDisabledAttr : function(value) {
    logger.debug(this.id + "._setDisabledAttr");

    this.isInactive = !!value;
    if (this.comboBox)  // <------ add this line
        this.comboBox.attr("disabled", this.isInactive);
},

All widgets should be investigated for the need of this change.

answered