We're using 2008 CLR 3.5 patch 2039. We apply the below style to a Numeric Edit with Spin buttons shown but the border color is not applied to the border of the table element that is created when the control is rendered.
.standardInputNumeric
; }
How can we get our specified border color to work for numeric edit controls when the spin buttons are enabled?
Hello,
Yes, I was able to reproduce this behavior.I believe at this point it is best to contact our Developer Support department directly - they can be reached at: http://ko.infragistics.com/support/Thanks.
The problem is that we are already using the cssclass property to specify our custom class but the border color is not being used when rendering the control with the spin buttons enabled. If we turn off the spin buttons the border is rendered correclty (orange). With the spin buttons on the border is rendered blue. Other settings like font etc are being respected but the table that is built uses a completely different border color than the one specified in the custom css class that we have created.
You can use the property CssClass and set custom CSS class. Please take a look sample code below:
<igtxt:WebNumericEdit ID="WebNumericEdit1" runat="server" CssClass="standardInputNumeric"> </igtxt:WebNumericEdit>Also you can take a look picture below:Hope this helps.