What are the possible standard values for setEvent
I just started looking at ActiveWidgets, so I apologize for my newbie-type post. But I am having trouble figuring out what the possible values are for the setEvent and setAction methods. For example
obj.setAction("click", function(src){window.status = src.getItemProperty("text")});
works, but
obj.setAction("dblclick", function(src){window.status = src.getItemProperty("text")});
does not. obj.setEvent("onclick",function(){ and obj.setEvent("ondblclick",function(){ both work. Are there other standard events that can be trapped and actions that can be coded for?
obj.setAction("click", function(src){window.status = src.getItemProperty("text")});
works, but
obj.setAction("dblclick", function(src){window.status = src.getItemProperty("text")});
does not. obj.setEvent("onclick",function(){ and obj.setEvent("ondblclick",function(){ both work. Are there other standard events that can be trapped and actions that can be coded for?
Mark
May 4,