dhxCombo does not become disable!!!!!!

var myForm = new dhtmlXForm(“myForm”);
myForm.loadStruct("…/DynamicData/SO_EXPORT/Main.xml", function () {
/*
Main.xml has this:




*/
var dhxCombo1 = myForm.getCombo(“BID”);
dhxCombo1.loadXML("…/DynamicData/SO_EXPORT/Branches.xml");
dhxCombo1.disable();

Here the combo does not become disable; why???

disable method takes a parameter that defines “disabled” state:

dhxCombo1.disable(true);

I DID try dhxCombo1.disable(true); also!! But it does not work either!!!???

We have checked dhxCombo1.disable(true); in the latest Suite. The method does work. Could you attach the complete demo that reproduces the problem