This question is locked. New answers and comments are not allowed.
I'm using build 2011.1.315 and the currency textbox like this:
now, type in this number: 2054.68
The control will NOT let you -- instead, it converts it to 2054.67.
I ran the local Telerik MVC .sln demo project, and it is behaving the same way (not allowing it)... so clearly, this is a Telerik issue.
I just ran the Telerik online demos (I'm assume it is your 2011 Q2 release) and there is no problem.
1. Can some one at Telerik verify that this is a bug in the 2011 Q1 release,
2. That it is fixed in the newest release
3. OR, ideally, a workground so that I don't have to upgrade to the newest release please?
Thank you.
<%
= Html.Telerik().CurrencyTextBoxFor(model => model)
.Spinners(
false)
.DecimalDigits(2)
.NumberGroupSize(3)
.NumberGroupSeparator(
",")
.MinValue(0)
.MaxValue(9999999999)
%>
now, type in this number: 2054.68
The control will NOT let you -- instead, it converts it to 2054.67.
I ran the local Telerik MVC .sln demo project, and it is behaving the same way (not allowing it)... so clearly, this is a Telerik issue.
I just ran the Telerik online demos (I'm assume it is your 2011 Q2 release) and there is no problem.
1. Can some one at Telerik verify that this is a bug in the 2011 Q1 release,
2. That it is fixed in the newest release
3. OR, ideally, a workground so that I don't have to upgrade to the newest release please?
Thank you.