5 Answers, 1 is accepted
I have checked how the code from the article is applied when using version 2012.2.607.1050. All is working fine. Please find the test project attached for a reference.
Didie
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
After Upgrade to Q3 we have partial wrong Language. In our case we get wrong Date formats.
See my screenshot.
This is breaking change for the RadGridView. You should set the Language property to be the CurrentCulture and the GridView will be formatted based on it. You can set it like so:
<
telerik:RadGridView
Name
=
"clubsGrid"
ItemsSource
=
"{Binding Clubs}"
AutoGenerateColumns
=
"False"
Language
=
"de"
>
I believe that will help you.
Yoan
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
Our Silverlight Programm is multilanguage, and now i have to hardcode the Grid?
Other Modules works out of the box correct (Use User System Language). This change is really bullshit.
Maybe I was not clear enough in the previous post. You do not need to hardcode anything. Please excuse me for that.
As you can see from the GridView's Release Notes, now the Culture used for formatting the GridView is the one specified as a Language for it or for the containing UserControl. We have changed the behaviour of the GridView concerning culture settings to be consistent with the ones for the DataGrid. You should set the Language property to be the CurrentCulture and the GridView will be formatted based on it.
Please check this help article to find an example on how you could set the Language property based on the CurrentCulture.
Yoan
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.