You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

In this article, we will show you how to make a nested datalist to expand in an iframe.


<iframe name='iframe' id="iframeLoanedItems" src="/jw/web/userview/Online_Gaming/OGP_App/_/reportViewCurd?embed=true" frameborder="0" border="0" cellspacing="0" height="500px" scrolling="yes" style="border-style: none;width: 100%"></iframe>
<script>
    $(document).ready(function(){
        $('iframe#iframeLoanedItems').load(function(){
            $('.nesteddl_trigger', $('iframe#iframeLoanedItems').contents()).trigger('click');
        })
    })
</script>


To embed a list inside an iframe you will need to use the <iframe> attribute and target the Menu ID containing the list. In this case "reportViewCurd" is the targeted Menu.

Figure 1: Targeted Menu ID


embed=true

Do take note "embed=true" is important. If not inserted in src, the whole targeted page will be displayed in the iframe instead of the List only.


Download the sample app below:

APP_kb_dx8_Online_Gaming.jwa



  • No labels