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

Parents
No Data
Reply
  • 565
    posted

    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>..

Children