dhtmlxCombo: How to get the "name" of Combo?

Hey,

I created a combo on this way:
var z = new dhtmlXCombo(“combo_zone2”,“alfa2”,200);

Is there any way to get the “name” (alfa2) of these combo? Like alert(z.name); ?!

Kind regards
nuclear

Hi, code please. Need to know how you be kept id.

It can be written as:

The Adventures of Tom Sawyer The Dead Zone The First Men in the Moon The Girl Who Loved Tom Gordon myCombo = dhtmlXComboFromSelect("mySelect") myCombo.attachEvent( "onChange", function(value){ alert(value); })

Hi,

There is no public API to retrieve this value

for dhtmlx ver 4.6

combo.DOMelem.childNodes[1].name will get you the name.