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

RadGridView Group Panel not displaying in correct region

3 Answers 54 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Tony
Top achievements
Rank 1
Tony asked on 09 Dec 2013, 09:27 PM

I have a WPF application that uses the RadGridView control to display search results:


<telerik:RadGridView AutoExpandGroups="True"
                                         AutoGenerateColumns="False"
                                         CanUserDeleteRows="False"
                                         CanUserFreezeColumns="False"
                                         CanUserInsertRows="False"
                                         CanUserResizeColumns="True"
                                         CanUserSortColumns="True"
                                         EnableColumnVirtualization="True"
                                         EnableRowVirtualization="True"
                                         FontSize="{x:Static res:Car.Common_DataEntryFontSize}"
                                         FontWeight="Bold"
                                         IsBusy="{Binding Path=IsLoadingReads, RelativeSource={RelativeSource AncestorType={x:Type cs:Searcher}}}"
                                         IsReadOnly="True"
                                         MouseDoubleClick="ReadsGrid_MouseDoubleClick"
                                         Name="ReadsGrid"
                                         RowIndicatorVisibility="Collapsed"
                                         RowStyleSelector="{StaticResource StyleSelector}"
                                         SelectionChanged="ReadsGrid_SelectionChanged"
                                         SelectionUnit="FullRow"
                                         ScrollViewer.CanContentScroll="True"
                                         ScrollViewer.HorizontalScrollBarVisibility="Auto"
                                         ScrollViewer.VerticalScrollBarVisibility="Auto"
                                         ShowGroupFooters="True"
                                         ToolTip="{x:Static res:Car.Searcher_ReadsGrid_ToolTip}">
                        <telerik:RadGridView.Columns>
                            <telerik:GridViewDataColumn DataMemberBinding="{Binding Plate,     Mode=OneWay}"
                                                        Header="{x:Static res:Car.Common_Plate}"
                                                        Width="*" />
                            <telerik:GridViewDataColumn DataMemberBinding="{Binding State,     Mode=OneWay}"
                                                        Header="{x:Static res:Car.Common_State}"
                                                        Width="75" />
                            <telerik:GridViewDataColumn DataMemberBinding="{Binding TimeStamp,  Mode=OneWay, Converter={StaticResource DateConverter}}"
                                                        Header="{x:Static res:Car.Common_DateNTime}"
                                                        Width="Auto" />
                            <telerik:GridViewDataColumn DataMemberBinding="{Binding GPSInformation.Position.Latitude, Mode=OneWay, Converter={StaticResource CoordConverter}, ConverterParameter={x:Static res:Car.GpsStatus_NS}}"
                                                        Header="{x:Static res:Car.Searcher_Latitude}"
                                                        Width="Auto" />
                            <telerik:GridViewDataColumn DataMemberBinding="{Binding GPSInformation.Position.Longitude, Mode=OneWay, Converter={StaticResource CoordConverter}, ConverterParameter={x:Static res:Car.GpsStatus_EW}}"
                                                        Header="{x:Static res:Car.Searcher_Longitude}"
                                                        Width="Auto" />
                            <telerik:GridViewImageColumn DataMemberBinding="{Binding GpsQuality, Mode=OneWay, Converter={StaticResource DeviceStatuses}}"
                                                         Header="{x:Static res:Car.Searcher_GpsQuality}"
                                                         ImageStretch="None"
                                                         Width="125" />
                        </telerik:RadGridView.Columns>
                        <telerik:RadGridView.CommandBindings>
                                    <CommandBinding CanExecute="DisplayEditRecordDetails_CanExecute" Command="cs:CarSystemCommands.DisplayEditRecordDetails" Executed="DisplayEditRecordDetails_Executed" />
                        </telerik:RadGridView.CommandBindings>
                    </telerik:RadGridView>


This works well when the machine culture is set to en-US.  However, when the machine culture is set to es-CL (Chile), the Group By Panel is still in English.  How do I get the Group By panel to display in Spanish?

3 Answers, 1 is accepted

Sort by
0
Dimitrina
Telerik team
answered on 10 Dec 2013, 11:35 AM
Hi,

The Spanish language is supported out of the box, so this culture should be supported. Please make sure that you have the "es" folder presented along with the assemblies you have referenced.

Regards,
Didie
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WPF.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
0
Tony
Top achievements
Rank 1
answered on 10 Dec 2013, 01:54 PM

I should have put this in the original question.



I have verified that the Telerik.Windows.Controls.resources.dll file is in the es folder.  I have also verified that the file is copied to the bin\Debug folder when the application is built.  Yet the Group panel's message text is still in English.




0
Dimitrina
Telerik team
answered on 10 Dec 2013, 02:09 PM
Hi,

I am not able to reproduce this behavior locally. Please find attached my test project. What is the result you observe running it at your side?

Regards,
Didie
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WPF.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
Tags
GridView
Asked by
Tony
Top achievements
Rank 1
Answers by
Dimitrina
Telerik team
Tony
Top achievements
Rank 1
Share this question
or