Add event

Hi,



I try to attach onclick and onchange events to dhtml combo.



but it is not working. my code is below













Please advice







Mentioned methods was never a part of official API but just temporary fix.
From new version the events can be attached in way, default for other component


combo.attachEvent(“onKeyPressed”,function(event){

    //code here

})

combo.attachEvent(“onBlur”,function(event){

    //code here

})

combo.attachEvent(“onChange”,function(event){

    //code here

})