1
Answer

Social Media Platform

Mahesh Chand

Mahesh Chand

10y
1.1k
1
I know more than 1.3 billion people are on Facebook. I am not much active on Facebook. All I do is, once in a while post my son's photos to share with few close family and friends. I get friend requests on FB from professional people but that's not where I want to be to connect and chat with people. That is where C# Corner is :). Here are some of my use of social media platforms. 
  • Facebook - Limited use. Personal.
  • Twitter - I used to post updates what I do technically 
  • LinkedIn - I have some contacts people I meet who I may never meet again :)
One thing I have to admit. Since I have started using these platforms, my productivity has gone down and once in a while I get some nonsense that is also a big distraction.
 
What is your purpose of being on these platforms? 
Answers (1)
Hi Hemant,
CoolJSTree is bit different. To get the file element from javascript, the tree should expand atleast once.. The span / anchor tags are rendered only on expand option. So I made expand all on tree load. Whenever you try to search some file, the tree will collapse and expand only the result tree hierarchy. Here is my code.. I have tried "PIP", it works fine..  Please let me know if you need any clarifications.
 
 
<script>
alert('started in index.jsp');
var tree1 = new COOLjsTree("tree1", TREE_NODES, TREE_FORMAT);
tree1.expandAll();
alert('ended in index.jsp');
$(function() {
$('#submit').on('click', function() {
tree1.collapseAll();
var results = $("a.treeNode[href^='download_documents.jsp']:contains('" + $('#search').val() + "')");
if (results.length == 0) {
alert("file not found!");
return false;
}
var targetElement = $(results[0]);
var targetAnchor = targetElement.is("span") ? $(targetElement.parent()[0]) : targetElement;
var targetUrl = targetAnchor.attr('href').replace(targetAnchor[0].protocol + '//' + targetAnchor[0].host, "");
var targetNodeIndex = tree1.nodeByURL(targetUrl).index;
var node = tree1.nodeByIndex(targetNodeIndex);
var expandList = [];
while (node.parentNode != null && node.parentNode.index > -1) {
if (!node.parentNode.expanded) expandList.push(node.parentNode.index);
node = node.parentNode;
}
expandList.reverse();
$.each(expandList, function(index, v) {
tree1.expandNode(v, true, true);
});
tree1.draw();
return false;
});
});
</script> 
0
hemant kumar

hemant kumar

NA 32 59.5k 9y

Attachment expandtrre.zip

hii harish
i have attached my source code please go through. set start page as newtree.aspx and see .
 
Can you share the code which you wrote for treeview display. so that we can try for search functionality...