gpt4 book ai didi

jquery - 第一次打开 jquery 对话框时出现奇怪的问题(在 asp.net gridview 中)

转载 作者:行者123 更新时间:2023-12-03 22:41:33 24 4
gpt4 key购买 nike

我在更新面板中有一个 GridView 。 gridview 中的字段之一是 ASP.net linkbutton,如下所示:

 <ItemTemplate>
<asp:LinkButton ID="hlSortOrder" runat="server" CssClass="hlDialog" OnClick="LoadLog"
Text='<%# DataBinder.Eval(Container, "DataItem.SortOrder") %>'></asp:LinkButton>
</ItemTemplate>

当有人单击链接按钮时,我会调用我创建的名为 LoadLogOnClick 方法。LoadLog 看起来像这样:

protected void LoadLog(object sender, EventArgs e)
{
GridViewRow gr = (GridViewRow)((DataControlFieldCell)((LinkButton)sender).Parent).Parent;
Label l = (Label)gr.FindControl("lblID");
DataSet ds;

ds = BL.GetRunoffAnswerLog(Convert.ToInt64(l.Text));

if (ds != null)
{
if (ds.Tables[0].Rows.Count == 0)
{
gvLog.Visible = false;
gvLog.DataSource = null;
lblRowsCount.Text = "No log for this record!";
}
else
{
lblRowsCount.Text = ds.Tables[0].Rows.Count.ToString() + " row(s) found for this record.";
gvLog.DataSource = ds.Tables[0];
gvLog.DataBind();
gvLog.Visible = true;
}
}
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "openDialog", "$('#dialog').dialog({draggable: true, modal: true, height: 500, width: 750, title: 'Log', open: function (type, data) {$(this).parent().appendTo('form');}});", true);
}

基本上,它获取 GridView 行的句柄,从数据库中拉回一些数据并将其分配给 gvLog 源。之后注意末尾的行:

ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "openDialog", "$('#dialog').dialog({draggable: true, modal: true, height: 500, width: 750, title: 'Log', open: function (type, data) {$(this).parent().appendTo('form');}});", true);

我必须这样做才能打开对话框。当我第一次点击 GridView 中的一行时,我得到了这个:

enter image description here

请注意,它只显示标题......很奇怪。但是,一旦我再次单击同一行,它就会显示整个对话框:

enter image description here

它只发生在第一次单击时,如果我继续单击不同的行,它就可以正常工作。我应该补充一点,我必须添加以下 jquery 代码:

 <script type="text/javascript">
$(document).ready(function () {
var prm = Sys.WebForms.PageRequestManager.getInstance();

prm.add_endRequest(function () {
$("#dialog").hide();
// re-bind your jQuery events here
});
....more code...

基于此讨论:jQuery $(document).ready and UpdatePanels?

如果我没有该代码,那么在回发发生时,该对话框所在的整个 div 总是会显示在我的页面上,而我不希望这样......

正如下面的一位成员所提到的。我相信发生的事情是您第一次单击链接按钮时,客户端事件首先发生,这将打开实际打开的对话框,即使我在服务器端代码中引发此事件......正如您在上面看到的,仅当您单击单击“LoadLog”事件来注册此 jquery opendialog。但似乎第一次仍然会打开对话框,第二次单击它后才会显示数据。

最佳答案

我对 jQuery 的强大功能和 UpdatePanel 遇到了很多问题。尝试这种方法:

  1. 将用于对话框的 div 放置在更新面板之外。不要在代码隐藏中创建对话框。相反,在页面加载时创建对话框。由于您的对话框位于更新面板之外,因此它不会被破坏。确保不要自动打开它。
  2. 向对话框 div 添加一个额外的 div 以保存您的内容。
  3. 创建一个 JavaScript 函数
    • 清除对话框中内容 div 中所有先前内容的内容
    • 附加gvLog控制对话框内容 div,如 $('#dialogContent').append($('#<%= gvLog.ClientID %>'));
    • 显示对话框
  4. 现在,在后面的代码中调整 RegisterClientScriptBlock 以调用这个新的 javascript 函数。

示例代码
隐藏代码:

public partial class _Default : System.Web.UI.Page 
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
//load in some dummy data
Dictionary<int, string> vals = new Dictionary<int, string>()
{
{1, "ONE"},
{2, "TWO"},
{3, "THREE"},
{4, "FOUR"},
{5, "FIVE"},
{6, "SIX"}
};

gvData.DataSource = vals;
gvData.DataBind();
}
}

protected void LoadLog(object sender, EventArgs e)
{
LinkButton lb = (LinkButton)sender;
var key = lb.CommandArgument;

Random r = new Random();
Dictionary<int, int> dict = new Dictionary<int, int>();

for (int i = 0; i <= r.Next(5, 20); i++)
{
dict.Add(r.Next(), r.Next());
}

gvLog.DataSource = dict;
gvLog.DataBind();

//show log in dialog on client
ScriptManager.RegisterStartupScript(up, up.GetType(), "openDialog", "showLog();", true);
}
}

设计师代码:

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="Scripts/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="Scripts/jquery-ui-1.8.21.custom.min.js" type="text/javascript"></script>
<link href="ui-lightness/jquery-ui-1.8.21.custom.css" rel="stylesheet" type="text/css" />

<script type="text/javascript">
$(function () {
//setup dialog
$('#dialog').dialog({draggable: true,
modal: true,
height: 500,
width: 750,
title: 'Log',
autoOpen: false});
});

function showLog() {
//clear any old log data
$('#dvContent').empty();
//append current log
$('#<%= gvLog.ClientID %>').appendTo($('#dvContent'));
//show dialog
$('#dialog').dialog('open');
}
</script>
</head>

<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="sp" runat="server" />
<div>
<asp:UpdatePanel ID="up" runat="server">
<ContentTemplate>
<asp:GridView ID="gvData" runat="server">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:LinkButton ID="lbShowLog" runat="server" Text="Show Log"
OnClick="LoadLog" CommandArgument='<%# Eval("Key") %>' />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>

<div style="display:none;">
<asp:GridView ID="gvLog" runat="server">
</asp:GridView>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</div>

<div id="dialog" style="display:none;">
<div id="dvContent">

</div>
</div>
</form>
</body>
</html>

关于jquery - 第一次打开 jquery 对话框时出现奇怪的问题(在 asp.net gridview 中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11228027/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com