onblur, onchange dont work?
Hi,
I'm trying to capture data changes to a regular combo, but I can't get the action handlers to work as expected. I am able to catch the onclick and onmouseup events, but those aren't really what I want. Does anyone know how to implement this? Thanks for any help.
I'm trying to capture data changes to a regular combo, but I can't get the action handlers to work as expected. I am able to catch the onclick and onmouseup events, but those aren't really what I want. Does anyone know how to implement this? Thanks for any help.
var obj = new AW.UI.Combo;
obj.setId(id);
obj.setItemText(textArray);
obj.setItemValue(valueArray);
obj.setItemCount(Math.max(valueArray.length, textArray.length));
obj.setEvent("onblur", function(event){alert("blur");});
obj.setEvent("onchange", function(event){alert("change");});
wombat
December 1,