Hi ,
I have UltraWebTree with several nodes . On single clicking a node say "first node" , the subsequent childnodes should open and on double clicking "first node" node again , the nodes should collapes . Please help me in solving this task ...
Regards,
Faizal
Hello,
This behavior is not supported out of the box. You have to implement your custom implementation on client side.
Thanks.
can u give me an example ????
You can use the property NodeClick of ClientSideEvents and use the function Click
<ClientSideEvents NodeClick="Click" />
<script type="text/javascript">
function Click(treeId,nodeId){
var node= igtree_getNodeById(nodeId)
node.setExpanded(true);
}
</script>
Hopes this helps.