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

RadGridView with culture ITA but currency ENU

1 Answer 182 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Dario Concilio
Top achievements
Rank 2
Dario Concilio asked on 02 May 2016, 12:11 PM

Hi to all,

I'm not understand why if although I setted CurrentCultureInfo "it", I see completely translated my grid (ok), but a column that should show a currency with italian format, it shows currency in english format yet.

My codes in app.cs and column of gridview

private void Application_Startup(object sender, StartupEventArgs e)
{
  Thread.CurrentThread.CurrentCulture = new CultureInfo("it");
  Thread.CurrentThread.CurrentUICulture = new CultureInfo("it");

<telerik:GridViewDataColumn Header="Cambio" DataMemberBinding="{Binding Cambio, StringFormat=\{0:F4\}}" />

1 Answer, 1 is accepted

Sort by
0
Dario Concilio
Top achievements
Rank 2
answered on 02 May 2016, 12:19 PM

Ok, the solution is IsLocalizationLanguageRespected

 

Tags
GridView
Asked by
Dario Concilio
Top achievements
Rank 2
Answers by
Dario Concilio
Top achievements
Rank 2
Share this question
or