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

Column name like "EnWa" rendered to "En Wa" and "t_ old_t" to "t _ old _t" Why?

1 Answer 28 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Henrik
Top achievements
Rank 1
Henrik asked on 22 Dec 2010, 05:42 PM
I notived this when our automatic page translator didn't work ...

Is there a way to turn this off?

I also notices that a header like "t_destination_t" is rendered to "t_ destination _t"

1 Answer, 1 is accepted

Sort by
0
Pavel
Telerik team
answered on 27 Dec 2010, 12:00 PM
Hi Henrik,

To achieve the old behavior you can use the ColumnCreated server-side event handler of the Grid like this:
void RadGrid1_ColumnCreated(object sender, GridColumnCreatedEventArgs e)
{
    e.Column.HeaderText = e.Column.UniqueName;
}

Best wishes,
Pavel
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Grid
Asked by
Henrik
Top achievements
Rank 1
Answers by
Pavel
Telerik team
Share this question
or