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

Localize delete string on autogeneratedeletecolumn

1 Answer 28 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Ruben
Top achievements
Rank 1
Ruben asked on 19 Nov 2008, 12:17 PM
Hi, is there a way to localize the string "Delete" of the linkbutton generated automatically by the grid when the autogeneratedeletecolumn is true?

1 Answer, 1 is accepted

Sort by
0
Accepted
Daniel
Telerik team
answered on 19 Nov 2008, 12:27 PM
Hello Ruben,

I suggest you the following approach:
protected void RadGrid1_ColumnCreated(object sender, GridColumnCreatedEventArgs e) 
    if (e.Column.UniqueName == "AutoGeneratedDeleteColumn"
        (e.Column as GridButtonColumn).Text = "Borrar"

Best regards,
Daniel
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Grid
Asked by
Ruben
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Share this question
or