Custom Drag Out

You can drag a node from the tree to some input control on page using the addDragLanding() method.

 
</> Source
<!DOCTYPE html>
<!--pro-->
<html>
<head>
	<title>Custom Drag Out</title>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
	<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
	<link rel="stylesheet" type="text/css" href="../../../codebase/fonts/font_roboto/roboto.css"/>
	<link rel="stylesheet" type="text/css" href="../../../codebase/dhtmlx.css"/>
	<script src="../../../codebase/dhtmlx.js"></script>
	<link rel="stylesheet" type="text/css" href="../common/demo_style.css"/>
	<script>
		var myTree;
		function doOnLoad(){
			myTree = new dhtmlXTreeObject("treeboxbox_tree","100%","100%",0);
			myTree.setImagePath("../../../skins/web/imgs/dhxtree_web/");
			myTree.enableDragAndDrop(true);
			myTree.setDragHandler(maf);
			myTree.enableSmartXMLParsing(true);
			myTree.load("../common/tree.xml");
			var sinput = document.getElementById('sInput');
			myTree.dragger.addDragLanding(sinput, new s_control);
		}
		function s_control(){
			this._drag=function(sourceHtmlObject,dhtmlObject,targetHtmlObject){
				targetHtmlObject.style.backgroundColor="";
				targetHtmlObject.value=sourceHtmlObject.parentObject.label;
			};
			this._dragIn=function(htmlObject,shtmlObject){
				htmlObject.style.backgroundColor="#fffacd";
				return htmlObject;
			};
			this._dragOut=function(htmlObject){
				htmlObject.style.backgroundColor="";
				return this;
			}
		}
		function maf(){
			return false;
		}
	</script>
</head>
<body onload="doOnLoad()">
	<h1>Custom Drag Out</h1>
	<p>You can drag a node from the tree to some input control on page using the addDragLanding() method.</p>
	<table>
		<tr>
			<td>
				<div id="treeboxbox_tree" class="tree_demo_samples"></div>
			</td>
			<td valign="top">
				<div style='float:left'>
					&nbsp;<input type="text" width="120px" id="sInput"/>
				</div>
			</td>
		</tr>
	</table>
</body>
</html>

Documentation

Check documentation to learn how to use the components and easily implement them in your applications.