0

我有一个模式对话框,单击按钮时会打开,打开时会加载.xhtml页面。

在这个 XHTML 页面中,我有一个按钮,用于将一些数据传递回父窗口(对话框被初始化的地方),然后我想关闭对话框但它不会关闭!这是我的代码:

第一页:

<script type="text/javascript">                         
    var selected_row_data_json;

    window.lang = new jquery_lang_js();

    $().ready(function () {
        $.ajaxSetup ({
            // Disable caching of AJAX responses
            cache: false
        });
        createDataListDialog();                
    });     

    function setSelectedRowJsonData(row_data_)
    {  
       selected_row_data_json = row_data_;                           
    }           

    function setFormSelectedValues()
    {
        $('#dataListDialog').dialog('close');  
    }

    function createDataListDialog()
    {
        $("#dataListDialog").dialog(
        {                   
            autoOpen: false,                      
            modal: true,                    
            resizable: true,
            open: function (event, ui) {   
            /* <![CDATA[ */                    
                $('#dataListDialog').css('overflow', 'hidden');

                $('body').css('overflow','hidden');
                $(this).load("data_list.xhtml");                       
            /* ]]> */
            },
            height: 400,
            width: 550,
            close: function (event, ui) {                        
                $(this).dialog('destroy');
                createDataListDialog();                        
            },
            create: function(event, ui)   
            {                                                  
                $(this).parents(".ui-dialog").css("padding", 0);                           
                $(this).parents(".ui-dialog:first")
                    .find(".ui-dialog-content").css("padding", 0);
            }
        });       
    }
</script>

<f:view>
    <h:outputLabel value="Code:"  lang="en" onclick="openDialog('dataListDialog');return false;" />

    <div id="dataListDialog" lang="en" title="Users" dir="#{user.dir}">                
    </div>
</f:view>

data_list.xhtml页:

<script type="text/javascript">
    function test()
    {
        window.parent.setSelectedRowJsonData(selected_row_data_json);
        window.parent.setFormSelectedValues();
    }
</script> 

<h:form id="dataListForm" ">   
    <input type="button" onclick="test()" value="TEST">/input>
</h:form> 

难道我做错了什么?遗漏了什么?为什么没有从加载的页面关闭对话框?

更新:如果加载的页面是一个html页面,那么它工作得很好 - 对话框正在关闭。问题是当页面是xhtml页面时..我该如何解决这个问题?

任何帮助将不胜感激!

4

1 回答 1

0

一种更简单的方法是在加载成功完成后触发test()函数——即将它绑定到complete事件:

$(this).load("data_list.xhtml",
    complete: function(response, status, xhr) {
        window.parent.setSelectedRowJsonData(selected_row_data_json);
        window.parent.setFormSelectedValues();
    });   

奖励:添加一些使用该status对象处理服务器错误的条件。

于 2012-12-06T16:11:49.393 回答