string
path = "~/Fisiere/";
RadFileExplorer1.Configuration.ContentProviderTypeName =
typeof(FileSystemContentProvider).AssemblyQualifiedName;
RadFileExplorer1.InitialPath = path;
RadFileExplorer1.Configuration.ViewPaths =
new string[] { path };
RadFileExplorer1.Configuration.UploadPaths =
new string[] { path };
RadFileExplorer1.Configuration.DeletePaths =
new string[] { path };
RadFileExplorer1.EnableOpenFile =
true;
RadFileExplorer1.EnableCopy =
true;
RadFileExplorer1.DisplayUpFolderItem =
true;
RadFileExplorer1.AllowPaging =
true;
RadFileExplorer1.EnableCreateNewFolder =
true;
-----------------------------------------------------------------------------------------
it doesn't work (I can't upload, delete, create folder)
but if I set these properties like this:
-----------------------------------------------------------------
<telerik:RadFileExplorer ID="RadFileExplorer1" Runat="server">
<Configuration ViewPaths="~/Fisiere/" UploadPaths="~/Fisiere/"
DeletePaths="~/Fisiere/" /> </telerik:RadFileExplorer>
----------------------------------------------------
it works. I want to be able to set these properties in code (read from web.config)
Thank you.

Hi,
I had created Rad Slider with custom skinning. The problem is, i am not able to position slider tick items directly above the text. At present the text is positioned between two ticks. I am attaching(radslider_01.jpg) the screen shot on my requirement. Please help.
Hi,
I had created Rad Slider with custom skinning. The problem is, i am not able to position slider tick items directly above the text. At present the text is positioned between two ticks. I am attaching(radslider_01.jpg) the screen shot on my requirement. Please help.

| <%@ Page Language="VB" AutoEventWireup="false" Inherits="Stavibel.Intranet.WebSite.Repro" |
| EnableEventValidation="false" CodeBehind="Repro.aspx.vb" %> |
| <%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head runat="server"> |
| <title>Page sans titre</title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <asp:ScriptManager ID="ScriptManager1" runat="server"> |
| </asp:ScriptManager> |
| <div> |
| <telerik:RadTabStrip ID="tabStrip" runat="server" |
| ScrollButtonsPosition="Middle" PerTabScrolling="true" ScrollChildren="true" Width="320px" |
| AutoPostBack="false"> |
| </telerik:RadTabStrip> |
| <telerik:RadTreeView ID="treeFolders" runat="server" CheckBoxes="True" TriStateCheckBoxes="false" |
| OnNodeExpand="treeFolders_NodeExpand"> |
| </telerik:RadTreeView> |
| <br /> |
| </div> |
| </form> |
| </body> |
| </html> |
| Imports System.IO |
| Imports System.Collections.Generic |
| Imports System.Xml |
| Imports System.Net |
| Imports Telerik.Web.UI |
| Imports System.Xml.Linq |
| Imports System.Xml.XPath |
| Imports System.Linq |
| Imports System.ServiceModel |
| Partial Class Repro |
| Inherits System.Web.UI.Page |
| Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load |
| If treeFolders.Nodes.Count = 0 Then |
| tabStrip.Tabs.Add(New RadTab("Montreal", "100")) |
| tabStrip.Tabs.Add(New RadTab("Quebec", "200")) |
| If tabStrip.SelectedIndex = -1 Then |
| tabStrip.SelectedIndex = 0 |
| End If |
| FillTreeRootNodes() |
| End If |
| End Sub |
| Protected Sub treeFolders_NodeExpand(ByVal sender As Object, ByVal e As RadTreeNodeEventArgs) |
| e.Node.Nodes.Add(New RadTreeNode(tabStrip.SelectedTab.Text)) |
| End Sub |
| Private Sub FillTreeRootNodes() |
| Dim xProject = New XElement("Node", _ |
| New XAttribute("Text", "ST0001 - Project 1"), _ |
| New XAttribute("Value", "ST0001"), _ |
| New XAttribute("ImageURL", "~/Images/iconSmall_Folder.jpg"), _ |
| New XAttribute("Expanded", "true"), _ |
| New XAttribute("Project", "true") _ |
| ) |
| Dim xTree = New XElement("Tree", xProject) |
| Dim xSub = New XElement("Node", _ |
| New XAttribute("Text", "001 - Sub 1"), _ |
| New XAttribute("Value", "001"), _ |
| New XAttribute("ImageURL", "~/Images/iconSmall_Folder.jpg"), _ |
| New XAttribute("Expanded", "False"), _ |
| New XAttribute("ExpandMode", "ServerSideCallBack"), _ |
| New XAttribute("SubProject", "true") _ |
| ) |
| xProject.Add(xSub) |
| xSub = New XElement("Node", _ |
| New XAttribute("Text", "002 - Sub 2"), _ |
| New XAttribute("Value", "002"), _ |
| New XAttribute("ImageURL", "~/Images/iconSmall_Folder.jpg"), _ |
| New XAttribute("Expanded", "False"), _ |
| New XAttribute("ExpandMode", "ServerSideCallBack"), _ |
| New XAttribute("SubProject", "true") _ |
| ) |
| xProject.Add(xSub) |
| Dim test = xTree.ToString() |
| treeFolders.LoadXmlString(test) |
| End Sub |
| End Class |
Hi there,
I have a RadGrid of outlook style. where i have group by expression by 2 fields (Status and Count). One of the status contains about 700+ records on expanding takes about 2 min. Detailed grid contains 4 templatecolumns like Edit / Delete / Cancel / View (asp ImageButton type). If i remove these template columns grid takes about 45 sec to expand. Please suggest me a solution to improve the performance on expand/collapse