Is anyone having problem with being able to enter data in the WebNumericEdit control while it is inside an update panel?
For Example:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<
asp:Panel runat="server" ID="panel1">
<div>
Amount:
<igtxt:WebNumericEdit ID="txtAmount" runat="server" MinDecimalPlaces="One" MaxLength="7">
</igtxt:WebNumericEdit>
</div>
</asp:Panel>
</ContentTemplate>
When you run the application, you can get focus to the control, but you cannot enter ANY data into it.. (and the ReadOnly property = False...)
Thanks
Anyone?? This is becoming an issue that if can't be resolved, we will have no choice but to remove the Infragistics controls...
What we have found out is that if we add a WebNumericEditControl outside of the <ContentTemplate>, you are able to enter data into all the controls.. remove the control outside of the <ContentTemplate> and once again, you cannot enter data into the controls inside the <Content Template>..
Hi,
I copied attached codes to a test apsx and ran it. I added missing closing tags for UpdatePanel and added a Button next to WebNumericEdit to trigger async postback.
That page run without problem. Editor was editable before and after postback and kept entered value.
Probably something else in your application which breaks control. Try to create a new temporary website, add a webform, copy codes which you attached to that from and test how it runs.