Hi
I Need To Convert Filter Titles To Persian But Without CodeBehind . How Can I ? Because When I Want To Work Many Grids I Can Not Use This Code For Each Grid In Application . I See One XML File In Bin Folder .But When I Edit That File Dont effect On Grid .
Please Help me.
Tnx
I Need To Convert Filter Titles To Persian But Without CodeBehind . How Can I ? Because When I Want To Work Many Grids I Can Not Use This Code For Each Grid In Application . I See One XML File In Bin Folder .But When I Edit That File Dont effect On Grid .
Please Help me.
Tnx
| protected void Page_Load(object sender, System.EventArgs e) |
| { |
| GridFilterMenu menu = RadGrid1.FilterMenu; |
| foreach (RadMenuItem item in menu.Items) |
| { |
| //change the text for the "StartsWith" menu item |
| if(item.Text == "StartsWith") |
| { |
| item.Text = "your_custom_localized_string"; |
| } |
| } |
| } |