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

Localization message 'No Records To Display'

1 Answer 48 Views
FileExplorer
This is a migrated thread and some comments may be shown as answers.
Camila Foltran
Top achievements
Rank 1
Camila Foltran asked on 16 Dec 2011, 02:31 PM
Hello,
I can not find the message 'Collapse/Expand the left Pane' in no .resx file of radEditors!
Where do I change the text 'Collapse/Expand the left Pane'  In The FileExplorer ?

 Help me!
thanks,
Camila.

1 Answer, 1 is accepted

Sort by
0
Dobromir
Telerik team
answered on 19 Dec 2011, 12:27 PM
Hi Camila,

At present, RadFileExplorer does not have the splitbar's CollapseExpand string exposed in the resource files. Nevertheless, you can manually set the values using the following code:
protected void Page_Load(object sender, EventArgs e)
{
    RadSplitBar splitBar = RadFileExplorer1.FindControl("splitBar") as RadSplitBar;
    splitBar.CollapseExpandPaneText = "Collapse/Expand {0}";
    splitBar.AdjacentPanesNames.LeftPaneName = "Left Pane";
    splitBar.AdjacentPanesNames.RightPaneName = "Right Pane";
}


Greetings,
Dobromir
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
Tags
FileExplorer
Asked by
Camila Foltran
Top achievements
Rank 1
Answers by
Dobromir
Telerik team
Share this question
or