gpt4 book ai didi

javascript - 通过模板字段打开 NavigateUrl 窗口

转载 作者:行者123 更新时间:2023-12-02 18:53:13 24 4
gpt4 key购买 nike

我尝试打开NavigateUrl Telerik Window从存在于更新面板中的 GridView 中的按钮,但我失败了,它根本不打开窗口

<小时/>

我的.aspx:

<asp:TemplateField HeaderText="details" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:ImageButton ID="ibtn_details" runat="server" ImageUrl="~/images/details.png"
CommandArgument='<%#((GridViewRow)Container).RowIndex%>' CommandName="Get_details" />
</ItemTemplate>
</asp:TemplateField>

<telerik:RadWindow runat="server" ID="radwin_popupdetails" NavigateUrl="PopUpDetail.aspx"
Modal="true" InitialBehaviors="Maximize">
</telerik:RadWindow>
<小时/>
 <script type="text/javascript">
function openWinNavigateUrl() {
$find("<%=radwin_popupdetails.ClientID %>").show();
}
</script>
<小时/>

我的.cs:

 protected void gv_inbox_RowCommand(object sender, GridViewCommandEventArgs e)
{
int index = Convert.ToInt32(e.CommandArgument);

if (e.CommandName == "Get_details")
{

Session["main_code"] = int.Parse(((HiddenField)gv_inbox.Rows[index].Cells[1].FindControl("HDN_MainCode")).Value);

//System.Web.UI.ScriptManager.RegisterClientScriptBlock(UpdatePanel2, UpdatePanel2.GetType(), "Open window", "openWinNavigateUrl(); return false;", true);
RadScriptManager.RegisterStartupScript(this, this.GetType(), "tabSelectedScript", "openWinNavigateUrl();", true);
}
}

最佳答案

关于javascript - 通过模板字段打开 NavigateUrl 窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15612489/

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