From: Pascal B. <pa...@dy...> - 2000-10-30 20:12:50
|
to fix this bug, find the function: DynDocument.prototype.EventMethod in core.ext.events and go to the second to last line that reads: evt.bubbleEvent() change that into: return evt.bubbleEvent() should also fix image-layer dragging problems. Note to other Dynapi developers, the event code in the last release needs some serious rechecking as mentioned in my other mail to dynapi-dev. greets! Pascal Bestebroer pa...@dy... http://www.dynamic-core.net -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Behrendt Darboven Verzonden: maandag 30 oktober 2000 17:29 Aan: dyn...@li... Onderwerp: [Dynapi-Help] forms in NS with Dynapi Hi out there, after changing to dynapi20001030, I found out, that Form-Tags are no longer working. I don´t know, if this is a bug or a feature, or if I did something wrong, but in IE it seems to work well. Here is the code, I typed: <html> <head> <title>New1</title> </head> <script language="Javascript" src="js/dynapi.js"></script> <script language="Javascript"> DynAPI.setLibraryPath('js/lib2.0/') DynAPI.include('core.api.*') // if I exclude this, the forms work! </script> <script language="JavaScript1.2"> function buttonClicked() alert("You clicked the Button") } </script> <body> <form name="data"> <input type="button" value="Test" onClick=buttonClicked()> </form> </body> </html> Regards, Behrendt _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |