My application work fine with DHTMLX 3.0 (IE8), but in DHTMLX 4.0 (to use IE11) almost of combo aren’t correctly initialized and generate the error “Impossible to obtain the property zzz of a null or not define reference” when a “document.getElementById” is used.
Yes, we added code in dhtmlxcombo.js in V3.0 and then, in V4.6:
dhtmlXCombo.prototype.getNumber = function(name){
return this.DOMlist.id.replace("_object","").replace(name,"");
};
// and others
In the program:
var comboCodeDA1 = new dhtmlXCombo("liste_das_saisie_1", "liste_das_saisie_1", 100);
alert ('getNumber = '+comboCodeDA1.getNumber('liste_das_saisie_'));
In V4.6, getNumber return ‘’; in V3.0, getNumber return ‘1’.
it’s the same thing by replacing DOMlist by getList.