sharmaprateek <[EMAIL PROTECTED]> writes:

> // List view event handler.
>
>       lv.addEventListener('click', function(e){
>                parent.frames["formView"].testing();
>        },this);

Are you sure that 'click' is the event that you want, and not 'execute'?  Is
your event handler being called?  You might confirm it with something like:

       lv.addEventListener('click', function(e){
                 alert("Got event");
                 parent.frames["formView"].testing();
        },this);

Also, is parent.frames accurate in this context?  You might try top.frames[],
although you should be getting a javascript error when making your current
call if parent.frames["formView"] doesn't exist.  (You do have javascript
errors being displayed, right?)

Maybe one of those random thoughts will turn out to be useful.

Cheers,

Derrell


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to