Hello,
I use the Rad Grid Control in a DotNetNuke Module and I can't not localisize like how you discripe in the telerik example:
I use the Rad Grid Control in a DotNetNuke Module and I can't not localisize like how you discripe in the telerik example:
protected void RadGrid1_ColumnCreated(object sender, GridColumnCreatedEventArgs e)
{
GridColumn boundColumn = e.Column as GridColumn;
switch (boundColumn.UniqueName)
{
case "Stop":
boundColumn.HeaderText =
"My customized contact name";
break;
case "SpotTime":
boundColumn.HeaderText =
"My customized contact title";
break;
case "Address":
boundColumn.HeaderText =
"My customized address";
break;
default :
boundColumn.HeaderText =
"default";
break;
}
}
Nothing is changing ?
What is my mistake ?