Re: EventListener and PropertySelection (Solution)

2008-04-24 Thread Kalle Korhonen
I just run into the same exact thing, using Tap 4.1.5, dojo that comes with it, propertyselection and an eventlistener as well as prototype. Anybody know if this is fixed in a newer snapshot, if there is a bug open on this or any (better) workaround? Kalle On Sat, Oct 27, 2007 at 9:41 AM, lt

Re: EventListener and PropertySelection (Solution)

2008-04-24 Thread Kalle Korhonen
Here's a solution that's still a bit ugly but at least a little less drastic than commenting out parts of Dojo... Override dojo.dom.isNode in your code as follows: dojo.dom.isNode=function(wh){ if(typeof Element==function){ try{ //return wh instanceof Element; return

Re: EventListener and PropertySelection (Solution)

2007-10-27 Thread lt
Ok after looking into this. It appears to be a conflict with DOJO and Prototypte. the isNode method in dojo check to see if Element is of type function and then compare it to the object. I am not willing to give up prototype for this, so i just commented out this section of the code in