The attachEvent() method can be used to add an event handler to any of the available events. The method needs to be called with the following parameters:
function my_handler(){ do_something(); };
myList.attachEvent("onSomeEvent",my_handler);
Several handlers can be attached to one and the same event and all of them will be executed.
The names of the events are case-insensitive.
There is a simple way of removing an event handler:
var id = myList.attachEvent("onSomeEvent",my_handler);
...
myList.detachEvent(id); // unique id of the event handler
You can find the full list of events in the dhtmlXList API.
Back to top