From: Behrendt D. <Beh...@da...> - 2000-10-31 07:24:21
|
Hello Pascal, I changed the line (it is in core.api.events), but this does not fix the problem, sorry. It also does not look because after the return evt.bubbleEvent() is another statement (if (type=3D=3D"rtmousedown" || type=3D=3D"rtmouseup") = return false) which obviously will never run. regards Behrendt Pascal Bestebroer wrote: > to fix this bug, find > the function:DynDocument.prototype.EventMethod in core.ext.eventsand > 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 seriousrechecking as mentioned in my other > mail to dynapi-dev. > greets! > Pascal Bestebroer pa...@dy... http://www.dynamic-core.net [Image] > > -----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=B4t 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=3D"Javascript" src=3D"js/dynapi.js"></script> > <script language=3D"Javascript"> > > DynAPI.setLibraryPath('js/lib2.0/') > > DynAPI.include('core.api.*') // if I exclude > this, the forms work! > </script> > > <script language=3D"JavaScript1.2"> > function buttonClicked() { > alert("You clicked the Button") > } > </script> > > <body> > <form name=3D"data"> > <input type=3D"button" value=3D"Test" > onClick=3DbuttonClicked()> > </form> > </body> > </html> > > Regards, Behrendt > _______________________________________________ Dynapi-Help > mailing list Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |