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

Localization

Localization

The Localization property specifies the strings that appear in the runtime user interface of RadDropDownTree control. By changing the values of each named sub-property, you change the appearance of the string in the RadDropDownTree.

Currently you can change the string for the Clear button as well as the string for the CheckAll property as exemplified below.

<telerik:RadDropDownTree RenderMode="Lightweight" ID="RadDropDownTree1" runat="server" Width="250px" 
    DefaultMessage="Please select" CheckBoxes="SingleCheck"
    DataSourceID="ObjectDataSource1" DataFieldID="ID" DataFieldParentID="ParentID"
    DataTextField="Text">
    <ButtonSettings showcheckall="true" showclear="true" />
    <Localization clear="Clear All" checkall="Check All" />
</telerik:RadDropDownTree>
In this article