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

Localizing CheckList Filtering Button

1 Answer 104 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Massimo
Top achievements
Rank 1
Massimo asked on 08 Apr 2015, 02:25 PM

hello

is there a way to localize the button "Apply" and "Cancel" and the checkbox "Check All" in a grid with CheckList Filtering enabled?

 

thank you

1 Answer, 1 is accepted

Sort by
0
Eyup
Telerik team
answered on 13 Apr 2015, 10:39 AM
Hello Massimo,

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.


Regards,
Eyup
Telerik
 

See What's Next in App Development. Register for TelerikNEXT.

 
Tags
Grid
Asked by
Massimo
Top achievements
Rank 1
Answers by
Eyup
Telerik team
Share this question
or