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

Change the RadGrid Checklist filter language

2 Answers 167 Views
Filter
This is a migrated thread and some comments may be shown as answers.
jeremy
Top achievements
Rank 1
jeremy asked on 25 Aug 2015, 12:56 PM
I recently tried to use the CheckList filtering on a ​RadGrid but i havn't manage to put my buttons language in french.
I would like to translate the "Chek All", "Apply" and "Cancel" buttons into french. How is it possible?
I don't find these elements in the RadFilter.Main.resx or RadGrid.Main.resx.

2 Answers, 1 is accepted

Sort by
0
Eyup
Telerik team
answered on 28 Aug 2015, 07:44 AM
Hi Jeremy,

You can use the following approach to achieve the requested localization:
Copy Code
protected void Page_Load(object sender, EventArgs e)
{
    RadMenuItem item = RadGrid2.FilterMenu.Items[0];
    RadListBox listBox = item.Controls[0] as RadListBox;
    listBox.Localization.CheckAll = "Zaznacz wszystko";
    Button button = item.Controls[1] as Button;
    button.Text = "Zastosować";
    button = item.Controls[2] as Button;
    button.Text = "Anulować";
}

Hope this helps. Please give it a try and let me know if it works for you.


Regards,
Eyup
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
jeremy
Top achievements
Rank 1
answered on 07 Sep 2015, 07:49 AM
It perfectly work! Thank you!
Tags
Filter
Asked by
jeremy
Top achievements
Rank 1
Answers by
Eyup
Telerik team
jeremy
Top achievements
Rank 1
Share this question
or