gpt4 book ai didi

jquery - 从 Updatepanel 内的 Gridview rowcommand 调用 JQueryUI

转载 作者:行者123 更新时间:2023-12-01 04:50:16 27 4
gpt4 key购买 nike

我已经被这个问题困扰了一段时间了。我一直在 stackoverflow 上寻找解决该问题的不同方法,但我仍然无法让它工作。它运行代码,但弹出窗口不会显示。当我将该方法放在更新面板外部的按钮上时,它会起作用。

我希望在单击 GridView 中的按钮字段时显示一个弹出窗口。

这是我的代码:

    <script type="text/javascript">
function ShowPopup(message, title) {
$(function () {
$("#dialog").html(message);
$("#dialog").dialog({
title: title,
buttons: {
Close: function () {
$(this).dialog('close');
}
},
modal: true
});
});
};
</script>

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

</div>

代码隐藏(我将解决问题的不同方法保留为评论):

protected void grdWallmessages_RowCommand(object sender, GridViewCommandEventArgs e)
{
string message = "Meddelande borttaget från väggen!";
string title = " Borttagning";
ScriptManager.RegisterStartupScript(updwallmessages, updwallmessages.GetType(), Guid.NewGuid().ToString(), "ShowPopup('" + message + "','" + title + "');", true);

// ScriptManager.RegisterStartupScript(this, this.GetType(), "myalert", "alert('File already exists.');", true);
// Page.ClientScript.RegisterStartupScript(this.GetType(), "Popup", "ShowPopup('" + message + "','" + title + "');", true);
try
{
DAL dal = new DAL();
//Hämtar row index.
int rowNum = int.Parse(e.CommandArgument.ToString());

int id = Convert.ToInt32(grdWallmessages.Rows[rowNum].Cells[3].Text);
dal.delete_wallmessages(id);


// ClientScript.RegisterStartupScript(this.GetType(), "Popup", "ShowPopup('" + message + "','" + title + "');", true);


Response.Redirect("Profile.aspx");



}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}

}

GridView 和更新面板:

<asp:UpdatePanel ID="updwallmessages" runat="server">
<ContentTemplate>
<asp:GridView ID="grdWallmessages" runat="server" Height="159px" style="margin-top: 18px; margin-right: 0px;" Width="396px" OnSelectedIndexChanged="GridView1_SelectedIndexChanged" OnRowCommand="grdWallmessages_RowCommand" OnRowDataBound="grdWallmessages_RowDataBound">
<Columns>
<asp:ButtonField Text="Ta bort" />
</Columns>
</asp:GridView>
</ContentTemplate>
</asp:UpdatePanel>

最佳答案

您无法在 ajax 上下文中创建 Response.Redirect("Profile.aspx");,当您将 GridView 代码保留在 UpdatePanel 中时会执行该上下文。

借助 Firebug 或 Chrome/Firefox 网络控制台检查服务器响应数据。

关于jquery - 从 Updatepanel 内的 Gridview rowcommand 调用 JQueryUI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21041412/

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