Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
565
WebNumericEdit Inside Update Panel
posted

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