Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,24 @@ position: 4
# Localization through Global Resources


From **UI for ASP.NET AJAX Q2 2010** onwards,*RadGrid* supports built-in localization through Global resources. Similar to **RadEditor** and **RadScheduler**, you can use the resx files to localize the control with minimum efforts.
From **UI for ASP.NET AJAX Q2 2010** onwards, **RadGrid** supports built-in localization through Global resources. Similar to **RadEditor** and **RadScheduler**, you can use the resx files to localize the control with minimum efforts.

## Using the resource file

The resource files should be placed within the **App_GlobalResources** folder in your application. You can either create your own language pack (see below) or use an existing one (if available for your language). Telerik controls installation wizard automatically copies the built-in resources to the **App_GlobalResources** in your local installation.

![](images/GlobalResources_Folder.jpg)

To change the current language/resource you should set the **Culture** property accordingly.
>note **RadGrid.Main.resx** must be in the **App_GlobalResources** folder in your application in order to change the culture/language.

To change the current language/resource you should set the **Culture** property accordingly.

>note RadGrid's default **Culture** is taken from the page's **CurrentUICulture** .
>


````ASP.NET
<telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" runat="server" Culture="en-US" ... </telerik:RadGrid>
<telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" runat="server" Culture="en-US"></telerik:RadGrid>
````


Expand Down
2 changes: 1 addition & 1 deletion controls/grid/how-to/Other-resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This page contains links to examples that you may find useful when implementing

* [Batch Editing Extensions - Related RadComboBoxes and Batch Validation]({%slug grid-batch-editing-extensions-related-radcomboboxes-and-validation%}) - Provides an extension for the RadGrid Batch Editing functionality, which allows you to implement related RadComboBoxes functionality between column and to set Batch Validation.
* [Manual Insert/Update/Delete operations using Auto-generated editform with sql statements from the code-behind]({%slug grid-manual-insert-update-delete-operations-using-auto-generated-editform-with-sql-statements-from-the-code-behind%}) - Demonstrates manual Insert/Update/Delete operations using Auto-generated editform with sql statements from the code-behind
* [Copy-Paste Cell/Row data through RadContextMenu with Batch Editing]({%slug grid-copy-paste-cell-row-data-through-radcontextmenu-with-batch-editing%%}) - Demonstrates how to implement Copy-Paste functionality for cells and rows for RadGrid in Batch Edit Mode with RadContextMenu.
* [Copy-Paste Cell/Row data through RadContextMenu with Batch Editing]({%slug grid-copy-paste-cell-row-data-through-radcontextmenu-with-batch-editing%}) - Demonstrates how to implement Copy-Paste functionality for cells and rows for RadGrid in Batch Edit Mode with RadContextMenu.

## Data Binding:

Expand Down