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

Globalization of columns

3 Answers 72 Views
Gantt
This is a migrated thread and some comments may be shown as answers.
Mikko
Top achievements
Rank 1
Veteran
Mikko asked on 25 Sep 2017, 10:40 AM

It seems that Column names (title, start time, end time,..) are not translated via dictionary (RadGantt.resx)

Is there a way to change column names?

 

 

3 Answers, 1 is accepted

Sort by
0
Mikko
Top achievements
Rank 1
Veteran
answered on 10 Feb 2020, 06:09 PM
Please see screenshot. Some texts are not translated to Finnish.
0
Mikko
Top achievements
Rank 1
Veteran
answered on 10 Feb 2020, 06:15 PM
I just noticed that these are defined as HeaderText
0
Peter Milchev
Telerik team
answered on 13 Feb 2020, 11:19 AM

Hello Mikko,

The HeaderTexts of the columns are not translated from the Localization files by default.

Nevertheless, you can translate them in the ColumnCreating event: 

protected void RadGantt1_ColumnCreating(object sender, Telerik.Web.UI.Gantt.ColumnCreatingEventArgs e)
{
    e.Column.HeaderText = "translated";
}

Regards,
Peter Milchev
Progress Telerik

Get quickly onboarded and successful with UI for ASP.NET AJAX with the Virtual Classroom technical trainings, available to all active customers. Learn More.
Tags
Gantt
Asked by
Mikko
Top achievements
Rank 1
Veteran
Answers by
Mikko
Top achievements
Rank 1
Veteran
Peter Milchev
Telerik team
Share this question
or