Hi Oliver..

I am familiar with the execute-event-listener stuff.. and I have already
tried the method you mentioned but I am sorry to say I have not found
success in that.. 


Basically, I have a list view and an iframe on the same page. I want that
whenever i click a row in the list view a function should get executed in
the lower iframe. Using the normal DOM approach I am not able to achieve
this functionality.. 

I am listing a part of my coding below: 

//////////////////////////////////////////////////////////////////////////////////////////////////////
      w1.setFrameName("formView"); // w1 is the iframe whose name is set as
formView
     
// List view event handler.

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

// following is the content of file that loads into the iframe.


<HTML>
<head>
<script>
                function testing()
                {
                                 alert('hi this is the lower iframe speaking.. 
hope u r doing good!');
                }
</script>
</head>
//////////////////////////////////////////////////////////////////////////////////////////////////////

Can anyone please help me out in this?

Regards,
Prateek.
-- 
View this message in context: 
http://www.nabble.com/QxIframe-Help%21-tf1930287.html#a5304822
Sent from the qooxdoo-devel forum at Nabble.com.



-------------------------------------------------------------------------
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