I have a web page that uses a Form Decorator in a master page. All is working fine, except for the Numeric Textbox. It is not accepting the RoundedCorners setting of the Form Decorator. A screen capture showing the page is attached.
The source code for the Decorator is:
The source code for the numeric textbox (Line #) is:
You will notice there is a second numeric textbox (N Days After Contract Signing) on the page. It also does not show rounded corners.
All other text boxes on the page are standard MS asp:TextBoxes. Also, you will see that the Rad ComboBox (Letter) has correctly displayed rounded corners.
Is there something I am doing incorrectly or is there a problem with the numeric textbox?
Thanks in advance for assistance!
Lynn
The source code for the Decorator is:
<telerik:RadFormDecorator Skin="Office2010Silver" Enabled="true" ID="QsfFormDecorator" DecorationZoneID="rfd-demo-zone" runat="server" DecoratedControls="All" EnableRoundedCorners="true" EnableEmbeddedSkins="true" />The source code for the numeric textbox (Line #) is:
<telerik:RadNumericTextBox ID="MPlanActLine" runat="server" TabIndex="1" Width="100px" Type="Number" NumberFormat-DecimalDigits="0"></telerik:RadNumericTextBox>You will notice there is a second numeric textbox (N Days After Contract Signing) on the page. It also does not show rounded corners.
<telerik:RadNumericTextBox ID="MPlanActCPDaysAfterSigning" runat="server" TabIndex="4" Width="100px" Type="Number" NumberFormat-DecimalDigits="0"></telerik:RadNumericTextBox>All other text boxes on the page are standard MS asp:TextBoxes. Also, you will see that the Rad ComboBox (Letter) has correctly displayed rounded corners.
Is there something I am doing incorrectly or is there a problem with the numeric textbox?
Thanks in advance for assistance!
Lynn