loadXMLString call from dhtmlXCombo

Hi!
I am using following function call, the onLoad function is not getting called. It doesn’t throw any error also.

Does loadXMLString support this call for dthmlXCombo? If not, what is the alternate way to make this function call?

var z = new dhtmlXCombo(“combo_zone2”, “alfa2”, 200);
dhtmlxAjax.post(url,null,outputResponse);
function outputResponse(loader){
var xmlString = loader.doSerialization();
z.loadXMLString(xmlString,onLoad);
}
function onLoad()
{
//code …
}

Regards,
MKB

Hello,

loadXMLString method gets only one parameter.

z.loadXMLString(xmlString);
onLoad();