开发者

paging of datacontrol in jquery dialog

开发者 https://www.devze.com 2023-01-13 05:34 出处:网络
I\'m using Jquery dialogs in my Asp.net web application for all my messages. Now I\'ve tried to fill a listview with customers inside a dialog and its working, but I want to allow the user to use pagi

I'm using Jquery dialogs in my Asp.net web application for all my messages. Now I've tried to fill a listview with customers inside a dialog and its working, but I want to allow the user to use paging in the listview for choosing his customer out of the list. When I press the button to move up 1 page, it ain't working...

Maybe it's just not possible? Or does someone have an example of paging a datacontrol in a Jquery dialog?

开发者_如何学CGreetz, Ben


I suspect that the dialog is not being displayed after the paging postback?

You have two options:

One: Change to using a popup window with the listview so that the paging is handled in the normal way in its own page

Two: On the serverside, when rendering pages, also render a startup jQuery script that re-displays the dialog.

    <div id="dialog" style="display:none;"  >
        <asp:listview ID="lv" runat="server" />
        ...etc
    </div>

In code behind:

        var script = new StringBuilder();
        script.AppendLine("jQuery(function($) {");
        script.AppendLine(string.Format("    $('#dialog').attr('Title','{0}');",  dialogTitle));
        script.AppendLine("    $('#dialog').dialog({ closeOnEscape: true,  modal: true });");
        script.AppendLine("});");

        ClientScript.RegisterStartupScript(GetType(), "dialog", script.ToString(), true);


The 2nd option works! I only added this code in codebehind:

ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "openDialogScript", "$(function() { openCustomerDialog(); });", true);

And in the .aspx file I added this:

openCustomerDialog = function openDialog(){
    $("#reportCustomerDialog").dialog({
        modal: true,           
        height: 420,
        width: 500,
        buttons: {
            Ok: function() {
                $(this).dialog('close');
            }
        }
    });
    $("#dialog").show();   
};  
0

精彩评论

暂无评论...
验证码 换一张
取 消