[cfaussie] Re: super scope is java object

2006-11-12 Thread Scott Arbeitman
better still would just be super.doThis() which would work. i just thought that was some interesting behaviour. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email t

[cfaussie] Re: super scope is java object

2006-11-12 Thread Mark Mandel
Scott - I did some investigating, and yeah, it almost doesn't look like you can't cfinvoke a super method directly. What I could manage was: var udf = super["dothis"]; return udf(); Which worked... not ideal, but could fix the case you have s