New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Localization

Drag a column header and drop it here to group by that column
Customer IDCompany NameContact NameContact TitleAddressPostal Code
Page size:
 91 items in 10 pages
TRADHTradição HipermercadosAnabela DominguesSales RepresentativeAv. Inês de Castro, 41405634-030
TRAIHTrail's Head Gourmet ProvisionersHelvetius NagySales Associate722 DaVinci Blvd.98034
VAFFEVaffeljernetPalle IbsenSales ManagerSmagsloget 458200
VICTEVictuailles en stockMary SaveleySales Agent2, rue du Commerce69004
VINETVins et alcools ChevalierPaul HenriotAccounting Manager59 rue de l'Abbaye51100
WANDKDie Wandernde KuhRita MüllerSales RepresentativeAdenauerallee 90070563
WARTHWartian HerkkuPirkko KoskitaloAccounting ManagerTorikatu 3890110
WELLIWellington ImportadoraPaula ParenteSales ManagerRua do Mercado, 1208737-363
WHITCWhite Clover MarketsKarl JablonskiOwner305 - 14th Ave. S. Suite 3B98128
WILMKWilman KalaMatti KarttunenOwner/Marketing AssistantKeskuskatu 4521240
  • NoFilter
  • Contains
  • DoesNotContain
  • StartsWith
  • EndsWith
  • EqualTo
  • NotEqualTo
  • GreaterThan
  • LessThan
  • GreaterThanOrEqualTo
  • LessThanOrEqualTo
  • Between
  • NotBetween
  • IsEmpty
  • NotIsEmpty
  • IsNull
  • NotIsNull
  • Custom
  • Sort Ascending
  • Sort Descending
  • Clear Sorting
  • Group By
  • Ungroup
  • Columns
  • Filter

  • Demo Configurator
Choose language

This demo shows how to localize RadGrid with minimum efforts using global resource files. You just need to copy the *.resx files (including the RadGrid.Main.resx file) to the App_GlobalResouces folder, set the Culture property and you are ready to go.

  • DefaultVB.aspx
  • DefaultVB.aspx.vb
<%@ Page Language="VB" Inherits="Telerik.GridExamplesVBNET.AccessibilityAndInternationalization.Localization.DefaultVB"CodeFile="DefaultVB.aspx.vb"  %>

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
    <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server">
    </telerik:RadAjaxLoadingPanel>
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="ConfigurationPanel1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="ConfigurationPanel1" LoadingPanelID="RadAjaxLoadingPanel1" />
                    <telerik:AjaxUpdatedControl ControlID="RadGrid1" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings>
    </telerik:RadAjaxManager>
    <telerik:RadGrid RenderMode="Lightweight" ID="RadGrid1" DataSourceID="SqlDataSource1" AllowSorting="True"
        EnableHeaderContextFilterMenu="true" EnableHeaderContextMenu="true" AllowPaging="True"
        runat="server" GridLines="None" AllowFilteringByColumn="True" ShowGroupPanel="True">
        <MasterTableView TableLayout="Fixed">
        </MasterTableView>
        <GroupingSettings ShowUnGroupButton="true"></GroupingSettings>
        <ClientSettings AllowDragToGroup="True">
        </ClientSettings>
    </telerik:RadGrid>
    <br />
    <asp:SqlDataSource ID="SqlDataSource1" ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
        ProviderName="System.Data.SqlClient" SelectCommand="SELECT CustomerID, CompanyName, ContactName, ContactTitle, Address, PostalCode FROM Customers"
        runat="server"></asp:SqlDataSource>
    <qsf:ConfiguratorPanel runat="server" ID="ConfigurationPanel1">
        <Views>
            <qsf:View>
                <qsf:ConfiguratorColumn ID="ConfiguratorColumn1" runat="server" Size="Narrow" Title="Choose language">
                    <qsf:RadioButtonList ID="radiobuttonlistLanguages" runat="server" RepeatDirection="Vertical"
                        AutoPostBack="True" Style="margin-left: 1em" OnSelectedIndexChanged="radiobuttonlistLanguages_SelectedIndexChanged">
                        <asp:ListItem Value="de-DE"><img src="flags/german.gif" alt="Deutsch"/> Deutsch</asp:ListItem>
                        <asp:ListItem Value="en-US" Selected="true"><img src="flags/english.gif" alt="English" /> English</asp:ListItem>
                        <asp:ListItem Value="fr-FR"><img src="flags/french.gif" alt="Français" /> Français</asp:ListItem>
                        <asp:ListItem Value="bg-BG"><img src="flags/bulgarian.gif" alt="Български" /> Български</asp:ListItem>
                    </qsf:RadioButtonList>
                </qsf:ConfiguratorColumn>
            </qsf:View>
        </Views>
    </qsf:ConfiguratorPanel>
    </form>
</body>
</html>

Support & Learning Resources

Find Assistance