3.2.0

pb mouse event

example: mouseover
the functions do not return "return true";
These events stop mouseevent treatment by the document.
It is annoying for me.
thierry
November 4,
>> the functions do not return "return true";

Why is this bad? The event handlers normally return 'undefined' and this should not change anything in event propagation.
Alex (ActiveWidgets)
November 5,
sorry i mmake certainly a mistake

in this case return false stop propagation
document.onmousemove = drag;
function drag(e){if(Current){Current.moveAction2(e);return false};return true;}

I have a window wich is dragged over the grid. When the mouse in on the grid grid"s events are treated and stop document mouse event (i can not drag anymore).

Have you an idea?

thierry
November 5,

This topic is archived.

See also:


Back to support forum