- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个报价生成器。对于每个产品,都有一组选项。我想为每个选项动态添加一个下拉列表,然后将它们的 SelectedIndexChanged 事件全部连接起来以更新报价成本。
我将 DropDownList 控件添加到我的 UpdatePanel 没有任何问题,但我似乎无法连接事件。
页面加载后,下拉菜单和它们的数据就在那里,但更改它们不会调用 SelectedIndexChanged 事件处理程序,也不会更新 QuoteUpdatePanel。
我有这样的事情:
编辑:自 programmatically adding AsyncPostBackTrigger controls is not supported ,我已将代码更改为此,但我仍然没有收到该事件:
编辑 2:尝试添加 PlaceHolder 以将下拉列表添加到(而不是直接添加到 ContentTemplateContainer,仍然没有触发事件。
报价面板
<asp:ScriptManager ID="ScriptManager" runat="server" />
<asp:UpdatePanel ID="QuoteUpdatePanel" runat="server" ChildrenAsTriggers="true">
<ContentTemplate>
Cost: <asp:Label ID="QuoteCostLabel" runat="server" />
<fieldset id="standard-options">
<legend>Standard Options</legend>
<asp:UpdatePanel ID="StandardOptionsUpdatePanel" runat="server" ChildrenAsTriggers="true" UpdateMode="Conditional">
<ContentTemplate>
<asp:PlaceHolder ID="StandardOptionsPlaceHolder" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</fieldset>
</ContentTemplate>
</asp:UpdatePanel>
protected void PopluateUpdatePanel(IEnumerable<IQuoteProperty> standardOptions)
{
foreach (IQuoteProperty standardOp in standardOptions)
{
QuotePropertyDropDownList<IQuoteProperty> dropDownList = new QuotePropertyDropDownList<IQuoteProperty>(standardOp);
dropDownList.SelectedIndexChanged += QuotePropertyDropDown_SelectedIndexChanged;
dropDownList.ID = standardOp.GetType().Name + "DropDownList";
dropDownList.CssClass = "quote-property-dropdownlist";
Label propertyLabel = new Label() {Text = standardOp.Title, CssClass = "quote-property-label"};
StandardOptionsPlaceHolder.Controls.Add(propertyLabel);
StandardOptionsPlaceHolder.Controls.Add(dropDownList);
_standardOptionsDropDownLists.Add(dropDownList);
ScriptManager.RegisterAsyncPostBackControl(dropDownList);
}
}
void QuotePropertyDropDown_SelectedIndexChanged(object sender, EventArgs e)
{
QuoteCostLabel.Text = QuoteCost.ToString();
StandardOptionsUpdatePanel.Update();
}
最佳答案
AFAIK,向 UpdatePanel
添加异步触发器以编程方式控制正在工作。
解决方法是将它们添加到 Page_Init
事件和设置触发器的 ControlID
控件唯一 id 值的属性:
AsyncPostBackTrigger trigger = new AsyncPostBackTrigger();
// unique id instead of client id
trigger.ControlID = yourDropDownControl.UniqueID;
trigger.EventName = "SelectedIndexChanged";
QuoteUpdatePanel.Triggers.Add(trigger);
QuotePropertyControl
和
Default
包含此控件的页面。
dropDownList.AutoPostBack = true
属性并能够从下拉列表中捕获异步回发。所以,猜测问题出在这个属性上。
ScriptManager.RegisterAsyncPostBackControl
并通过
AsyncPostBackTrigger
像魅力一样工作(直到页面的 init 事件)。
private string[] data = { "a", "b", "c", "d", "e" };
public void PopluateUpdatePanel(IEnumerable<string> standardOptions)
{
foreach (string standardOp in standardOptions)
{
DropDownList dropDownList = new DropDownList();
dropDownList.SelectedIndexChanged +=
QuotePropertyDropDown_SelectedIndexChanged;
dropDownList.ID = standardOp + "DropDownList";
dropDownList.CssClass = "quote-property-dropdownlist";
dropDownList.AutoPostBack = true;
dropDownList.DataSource = data;
dropDownList.DataBind();
Label propertyLabel = new Label() { Text = standardOp };
StandardOptionsPlaceHolder.Controls.Add(propertyLabel);
StandardOptionsPlaceHolder.Controls.Add(dropDownList);
ScriptManager.GetCurrent(Page)
.RegisterAsyncPostBackControl(dropDownList);
}
}
protected void QuotePropertyDropDown_SelectedIndexChanged(
object sender,
EventArgs e
)
{
StandardOptionsUpdatePanel.Update();
}
<asp:UpdatePanel ID="QuoteUpdatePanel" runat="server" ChildrenAsTriggers="true">
<ContentTemplate>
Cost:
<asp:Label ID="QuoteCostLabel" runat="server" />
<fieldset id="standard-options">
<legend>Standard Options</legend>
<asp:UpdatePanel ID="StandardOptionsUpdatePanel"
runat="server"
ChildrenAsTriggers="true"
UpdateMode="Conditional">
<ContentTemplate>
<asp:PlaceHolder ID="StandardOptionsPlaceHolder"
runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</fieldset>
</ContentTemplate>
</asp:UpdatePanel>
string[] names = { "ab", "bc", "ef" };
protected void Page_Init(object sender, EventArgs e)
{
ctlQuoteProperty.PopluateUpdatePanel(names);
}
<%@ Register Src="~/QuotePropertyControl.ascx"
TagPrefix="uc"
TagName="QuoteProperty" %>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager" runat="server" />
<uc:QuoteProperty runat="server"
ID="ctlQuoteProperty">
</uc:QuoteProperty>
</div>
</form>
关于asp.net - 如何以编程方式向 ASP.NET UpdatePanel 添加触发器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2715623/
我在 asp.net 页面中有一些更新面板。我希望 updatepanel 2 在 updatepanel 1 刷新时刷新,但 UpdatePanel 2 的 UpdateMode 属性设置为 Con
我的 ajax 页面上有两个更新面板。这是我第一次使用 updatepanel,我不知道出了什么问题。我认为只有 btnFilter 的 Click 事件必须触发第二个更新面板的内容,但更改组合值(也
如果有 UpdatePanel在另一个 UpdatePanel ,并且在内部的UpdatePanel 中有一个按钮,我想点击这个按钮时,只刷新内部UpdatePanel .如何 ? 最佳答案 在inn
我正在将 ASP.NET 应用程序从 3.5SP1 移植到 4.0。该应用程序在 3.5SP1 中完美运行。在 4.0 中,我发现 UpdatePanel 行为有所不同。 我们有一个简单的用户控件,其
我已经复制并粘贴了这个警报类: http://madskristensen.net/post/JavaScript-AlertShow%28e2809dmessagee2809d%29-from-AS
我正在使用 C# 的 ASP .NET 4.0。我有一个 Web 表单,其中所有布局都存在于 UpdatePanel 中。里面有以下内容: 用于通过文本框和搜索按钮输入搜索条件的面板 使用动画 .gi
我需要在 UpdatePanel upSectionB 中添加 LinkButton btnAddRow 但问题是我在加载期间遇到此错误: A control with ID 'btnAddRow
我有一个带有 Ajax 选项卡控件的页面,其中一个选项卡中有一个 Web 控件,它是 Telerik RadGrid,其中编辑表单指向另一个 Web 控件。该编辑表单还包含 Ajax 选项卡,并且在其
我有一个带有一些复选框的 UpdatePanel。我检查它们,然后点击我的保存按钮,但这会导致 UpdatePanel 回发(刷新)并将它们全部设置回空白。重绘方法在按钮代码之前运行。 拥有可以操作的
我有很多地方......构造就在它所作用的元素之后进行(以确保在显示 HTML 之前立即对其进行处理)。一切正常。 现在我开始使用asp:UpdatePanel和一些标签在里面。我设置Visible=
我在使用 UpdatePanels 的同一个 asp.net 页面上有这个函数 $(function() { $("#listTimeInput").change(function() {
我有一个 UpdatePanel,用于替换页面内的内容。在 UpdatePanel 之外,我有一些 jQuery 使用 on() 函数来分配一些按钮点击。据我了解the new jQuery.on()
我已经将 Jquery 用于圆角(DIV),并且我有一个更新面板,其中包含一个数据列表,其中包含一些图像和一个删除链接。当我单击删除链接时,它会触发删除命令并删除图像。(异步回发)。问题是当我单击删除
考虑以下场景: MasterpageFile1: 嵌套母版页文件:
我目前正在尝试对位于 AJAX UpdatePanel 内的 GridView 使用“colResizable”。第一次加载时,它运行良好,但每当 UpdatePanel 更新时,它就会停止。 我知道
我只是想做空 this question's example通过制作一个简短的原型(prototype)来测试 UpdatePanel 功能,以禁用单击链接按钮时重新加载 ASP.NET 页面。我在像
我有一个相当复杂的 UI 页面,其中嵌套了多个 UpdatePanel。所有这些都设置为 UpdateMode = "Conditional" 我在所有更新面板之外都有一个列表框。奇怪的是,当单击 U
我正在阅读一篇显示 how bad CodePlex uses UpdatePanels 的文章以及 StackOverflow 在这个问题上有多好,例如,当用户赞成一个答案/问题时。 我想知道是否有
闲置 2 分钟后,在页面上呈现更新面板所需的时间大约是之前的 3 倍。我知道这可能是应用程序池设置的问题,但是有没有办法通过定期从页面与服务器联系来避免该问题? 最佳答案 你想做的是这样的 -> fu
我是一名优秀的程序员,十分优秀!