Take the standard FirstLook demo for RadNumericTextBox and change the box to include the attribute Value="0". Now try entering the value .25 (without the leading 0). The number gets turned into "25" without the leading decimal. This is going to confuse my users who are used to entering numbers without looking at the screen.
Also, when I have Enabled="false" shouldn't it use the Disabled CSS overridden by whatever I put in <DisabledStyle /> ? I have
Also, when I have Enabled="false" shouldn't it use the Disabled CSS overridden by whatever I put in <DisabledStyle /> ? I have
<
DisabledStyle BackColor="gainsboro" ForeColor="black" Font-Bold="true" />
and it seems to ignore the ForeColor (it shows a dark gray forecolor instead). This is less important than the first problem, just wanted to see if there was a good workaround.