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

[Solved] Localization

1 Answer 129 Views
Grid
This is a migrated thread and some comments may be shown as answers.
thdwlgP
Top achievements
Rank 1
thdwlgP asked on 13 Jul 2009, 04:48 PM
I turned on the AllowDragToGroup and there is a text "Drag a column header and drop it here to group by that column"
How do i localize that?
I've looked at http://www.telerik.com/help/aspnet-ajax/grdlocalizingtootips.html and I cant seem to find it.
Thanks

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 14 Jul 2009, 05:30 AM
Hello,

You can set a custom text in the group panel as shown below:
aspx:
<telerik:RadGrid ID="RadGrid1" ShowGroupPanel="true"                 runat="server" DataSourceID="SqlDataSource1"
     <GroupPanel Text="Custom Text"></GroupPanel>               
     <MasterTableView DataSourceID="SqlDataSource1"
       .... 
                

c#:
RadGrid1.GroupPanel.Text = "CustomText";

Thanks
Princy.
Tags
Grid
Asked by
thdwlgP
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or