Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
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?
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