I have problem with WebNumericEdit control after async. update via UpdatePanel (cant edit, doesnt update values). Version 8.2. Please help.
Page code:
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="DNTerritoryTest.aspx.cs" Inherits="Pages_Anticipation_DNTerritoryTest" Title="Untitled Page"
EnableTheming="true" Trace="false" %>
<%@ Register TagPrefix="igmisc" Namespace="Infragistics.WebUI.Misc" Assembly="Infragistics2.WebUI.Misc.v8.2" %>
<%@ Register TagPrefix="igtxt" Namespace="Infragistics.WebUI.WebDataInput" Assembly="Infragistics2.WebUI.WebDataInput.v8.2" %>
<!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 id="Head1" runat="server">
</head>
<body>
<form ID="content" runat="server" >
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true" LoadScriptsBeforeUI="true" EnablePageMethods="true" >
</asp:ScriptManager>
<div class="panel_blue">
<div class="header">
Month:<asp:DropDownList ID="drpMonth" runat="server" AutoPostBack="True"
DataTextField="YearMonthDesc" DataValueField="YearMonth" OnSelectedIndexChanged="drpMonth_SelectedIndexChanged">
</asp:DropDownList>
</div>
<div class="contentNoPadd">
<asp:UpdatePanel ID="uppData" runat="server" RenderMode="Block" UpdateMode="Always">
<ContentTemplate>
<asp:Repeater ID="rptDnTerritory" runat="server" OnItemDataBound="rptDnTerritory_ItemDataBound">
<HeaderTemplate>
<table >
<tr class="header">
<td colspan="10" class="emptyCell progress">
<asp:UpdateProgress ID="UpdateProgress1" runat="server" DynamicLayout="false" >
<ProgressTemplate>
<div class="progressMessage">The data is updating ....</div>
</ProgressTemplate>
</asp:UpdateProgress>
</td>
</tr>
<th colspan="2" class="leftBorderBold">
Initial Stock
</th>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td class='default leftBorderBold'>
<igtxt:WebNumericEdit ID="nedStockInitial" runat="server" Value='<%# Eval("StockInitial") %>'
DataMode="Decimal" MinDecimalPlaces="One" Width="50px" >
</igtxt:WebNumericEdit>
</ItemTemplate>
</asp:Repeater>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="drpMonth" EventName="SelectedIndexChanged" />
</Triggers>
</asp:UpdatePanel>
<%--</igmisc:WebAsyncRefreshPanel>--%>
<br />
<
<div class="buttonBar">
<asp:Button ID="btnSave" runat="server" Text=" Save " OnClick="btnSave_Click" />
<%-- <div id="AlertDiv" class="AlertStyle">
</div>--%>
</form>
</body>
</html>
Hi,
I copied attached codes to a test aspx and run it. To clear errors I removed server events from controls. Since editor is located in repeater, I did not get editor in browser. So, attached codes can not be used to test that issue.
I suggest you to submit an bug report with a simple application and steps to reproduce.http://ko.infragistics.com/support/ask-for-help.aspx
I am also having the same problem and cannot get an response from Infragistics...