Hi,
I am trying to load a combo with xml data obtained through a handler. The handler works fine, it is being called and returning the xml text with the options but the combo is always empty.
Here is my code:
dhx.ready(function() {
dhx.ui({
id: ‘app’, view: ‘layout’, height: 1024, width: 768,
rows: [
{ view: “combo”, id: “audiopt”, label: “Language”, readonly: true
}
]
});
$$("audiopt_list").load("Handlers/GetLangs.ashx", "xml");
});