1
Answer

showmodaldialog issue

I am executing script from server side
ScriptManager.RegisterStartupScript(this, typeof(Page), UniqueID, "javascript:var ans = window.showModalDialog('TransactionHistoryDetail.aspx?' + '&rowID=" + rowID + "&Type=" + OrderType + "&OrderNo=" + OrderNo + "', 'dialogWidth=1000px;dialogHeight=700px;resizable: yes;dialogLeft=' + ((screen.width - 1000) / 2) + ';dialogTop=' + (screen.height - 700) / 2 + ''); ", true);
I am not able to change the dialogWidth and Height If I am changed the both value in the script
Plz help me to solve the issue

shivakumar64@rediffmail.com
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...