RadAjaxManager1_AjaxRequest) but nothing happens visually. Here's the code:<telerik:RadFileExplorer runat="server" ID="RadFileExplorer1" Skin="WebBlue" Width="99.7%" Height="250px" AllowPaging="true" PageSize="50" ExplorerMode="Default" CssClass="rfeLargeThumbnails" EnableFilterTextBox="true" EnableFilteringOnEnterPressed="false" FilterTextBoxLabel="Filter By" meta:resourcekey="labFilterBy" DisplayUpFolderItem="false" OnClientFileOpen="OnClientFileOpen" OnClientLoad="attachHandlers"> <Configuration EnableAsyncUpload="true" MaxUploadFileSize="10485760" /></telerik:RadFileExplorer>function toolbarClicked(toolbar, args) { var buttonValue = args.get_item().get_value(); if (buttonValue == "ViewMode") { var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>"); ajaxManager.ajaxRequest("RadFileExplorer1_ViewMode"); }}function attachHandlers(explorer, args) { var toolbar = explorer.get_toolbar(); toolbar.add_buttonClicked(toolbarClicked); }
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
RadToolBarButton customButton = new RadToolBarButton("ViewMode"); customButton.CssClass = "custom_button"; customButton.Value = "ViewMode"; customButton.Text = "View Mode"; RadFileExplorer1.ToolBar.Items.Add(customButton);
}
} protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e) { if (e.Argument == "RadFileExplorer1_ViewMode") { if (RadFileExplorer1.ExplorerMode == Telerik.Web.UI.FileExplorer.FileExplorerMode.Default) { RadFileExplorer1.ExplorerMode = Telerik.Web.UI.FileExplorer.FileExplorerMode.Thumbnails; } else { RadFileExplorer1.ExplorerMode = Telerik.Web.UI.FileExplorer.FileExplorerMode.Default; } } }


Hai,
I have used telerik controls in my Application.I have added Reference to the Dll Telerik.Web.UI.dll.I have added Prefix in Webconfig.
<add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI, Version=2009.3.1103.35, Culture=neutral,PublicKeyToken=121fae78165ba3d4"/>
I got the error "Unable to Create Designer Telerik.web.UI".When i searched in net,I found that i need to add Telerik.web.design.dll File.
Iam using VS 2008.Anyone pls tell me how to solve this problem?I didnt get telerik.web.design dll.is there any other way to solve this problem.Thanks in Advance

Hai,
I have used telerik controls in my Application.I have added Reference to the Dll Telerik.Web.UI.dll.I have added Prefix in Webconfig.
<add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI, Version=2009.3.1103.35, Culture=neutral,PublicKeyToken=121fae78165ba3d4"/>
I got the error "Unable to Create Designer Telerik.web.UI".When i searched in net,I found that i need to add Telerik.web.design.dll File.
Iam using VS 2008.Anyone pls tell me how to solve this problem?I didnt get telerik.web.design dll.is there any other way to solve this problem.Thanks in Advance

