This is a migrated thread and some comments may be shown as answers.

Window Title

4 Answers 72 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Gusev
Top achievements
Rank 1
Gusev asked on 16 Apr 2013, 11:50 AM
Editable PopUpWindow

I have this:
<script type="text/javascript">
        kendo.culture(//here is my culture);
    </script>
and everything works well,but editable.PopUp window has titile "Edit"
why localization doesnt work?

4 Answers, 1 is accepted

Sort by
0
Accepted
Vladimir Iliev
Telerik team
answered on 17 Apr 2013, 12:21 PM
Hi Gusev,

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

Kind Regards,
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
0
Accepted
Vladimir Iliev
Telerik team
answered on 18 Apr 2013, 11:47 AM
Hi Gusev,

 
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")
)

Kind Regards,
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!
Tags
Grid
Asked by
Gusev
Top achievements
Rank 1
Answers by
Vladimir Iliev
Telerik team
Gusev
Top achievements
Rank 1
Share this question
or