4 Answers, 1 is accepted
0
Accepted
Hi Gusev,
Vladimir Iliev
the Telerik team
Plase make sure you did not hit the localization issue that we found with version 2013.1 319.
Take a look at this topic:
http://www.kendoui.com/forums/mvc/general-discussions/localization-issue-when-updating-to-q1-2013-(2013-1-319).aspx
Vladimir Iliev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Gusev
Top achievements
Rank 1
answered on 18 Apr 2013, 09:51 AM
Good good!
All works!
Thanks :)
Can I ask?
"increase value" "descrease value"
Localization doesnt work
All works!
Thanks :)
Can I ask?
"increase value" "descrease value"
Localization doesnt work
0
Accepted
Hi Gusev,
Kind Regards,
Vladimir Iliev
the Telerik team
The NumbericTextBox increase and decrease buttons titles currently are not included in the globalization resources and should be set manually:
e.g.:
@(Html.Kendo().NumericTextBox<
decimal
>()
.Name(
"currency"
)
.Format(
"c"
)
.Min(0)
.Max(100)
.Value(30)
//translate the buttons title
.DecreaseButtonTitle(
"your custom decrease title"
)
.IncreaseButtonTitle(
"your custom increase title"
)
)
Vladimir Iliev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Gusev
Top achievements
Rank 1
answered on 19 Apr 2013, 10:15 AM
Thanks for help!