Load Combo Data

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");

    });

never mind I’ve just notice that combo use a different xml structure than the dhtmlxcombo component

I am back I changed the xml to :

- English - Spanish

and I still there is not data in the combo, please help