Hola Moss devs,
Està buscant webpart TreeView per mostrar la biblioteca de documents en vista d'arbre.
No hi ha fora de la webpart caixa disponible per mostrar la biblioteca de documents en Vista d'arbre.
Vaig començar buscant a Google quan va començar a treballar en aquesta tasca. I got few webparts which is using java script to load the tree view. I thought of developing own webpart to render the document library in tree view control.
I have created the webpart using .Net 2.0 tree view control and fetching the document library information from the toolpart to render the data to tree view.
Use the following code to load the leaf information of tree view from the document library.
public void TraverseFolder(SPFolder folder,AspControls.TreeNode node)
{
TreeNode tNode = new System.Web.UI.WebControls.TreeNode(folder.Name);
intentar
{
si (folder.Name != “Forms”)
{
foreach (SPFolder fldr in folder.SubFolders)
{
si (fldr.Name != “Forms”)
{
TreeNode trn = new System.Web.UI.WebControls.TreeNode(fldr.Name);
tNode = TraverseFiles(fldr, trn);
rNode.ChildNodes.Add(tNode);
}
}
foreach (SPFile file in folder.Files)
{
TreeNode trnChild = new System.Web.UI.WebControls.TreeNode(file.Name, “”, “~/_layouts/images/” + file.IconUrl, file.ServerRelativeUrl.ToString(), “”);
//trv.Nodes.Add(trnChild);
rNode.ChildNodes.Add(tNode);
}
}
}
captures (Exception i)
{
Console.WriteLine(e.Message);
}
}
public TreeNode TraverseFiles(SPFolder fldr, AspControls.TreeNode node)
{
intentar
{
foreach (SPFile file in fldr.Files)
{
AspControls.TreeNode trnChild = new System.Web.UI.WebControls.TreeNode(file.Name, “”, “~/_layouts/images/” + file.IconUrl, file.ServerRelativeUrl.ToString(), “”);
node.ChildNodes.Add(trnChild);
}
bool bRecurseFolders = fldr.SubFolders.Count > 0 ? cert : fals;
si (bRecurseFolders)
{
per (int i = 0; a < fldr.SubFolders.Count; i++)
{
TreeNode trnChild = new System.Web.UI.WebControls.TreeNode(fldr.SubFolders[i].Name);
node.ChildNodes.Add(TraverseFiles(fldr.SubFolders[i], trnChild));
}
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
return node;
}
Use the Traverse Folder function and pass the root element of the document library as parameter.
Now you got a Tree view with appropriate leaf nodes.
Render it in your webpart project 🙂
Hola,
Can i get working webpart of this code. I am new to development but i need this webpart with sorting of all folders and files.
Please send me on kdk1983@gmail.com
hi
Em podria explicar en deatil
Iam que té el mateix problema si o em pot explicar en detall com proceed..thenn seria molt agraïts b
hi
can you please explain me in details how to proceed..
please its urgentwinadbut
Hey Guyz,
Refer My CodePlex Release http://techblog.udayakumar.net/2008/08/treeview-document-library-webpart-v10.html
Gràcies,
~ Uday.
wat this means? AspControls.TreeNode node pls help