Issue: In NS4 form elements do not respond to mouse or keyboard events.
This issue only occurs when the mouse.js and keybord.js events are included and an event listener is added to the layer. The same goes for hyperlinks
[update 25/Oct/2001]
As of now this issue should be fixed.
A keyevent has been added to the DynAPI.document, and an onclick event to the DynLayer for testing.
Discrepancies: (tested on win2000/Linux)
IE:
The DynAPI onclick event is caught by all form elements on the DynLayer.
The DynAPI onkeyup event is caught at all times.
The textbox' change event is caught when changing focus to another element.
NS4/Win:
The DynAPI onclick event is only caught by the hyperlink, and the DynLayer.
The DynAPI onkeyup event is not caught when a form element has the focus.
The textbox' change event is caught when changing focus to another element.
Mozilla (NS6)/Win:
The DynAPI onclick event is caught by all form elements on the DynLayer.
The DynAPI onkeyup event is caught at all times.
The textbox' change event is caught on each keyup.
NS4/Linux:
onclick is caught by the hyperlink only.
change is called with each key
onkeyup is called two times with each key - one before and one after the change-event
Mozilla/Linux:
The DynAPI onclick event is caught by all form elements on the DynLayer.
The DynAPI onkeyup event and the textbox' change event couldn't be tested,
as the textbox lost focus due too the "in myWindow.onclick" alert.