Custom error handlers

The current sample demonstrates how custom errors notifications look like. You can ealisy set the error handler using the code mentioned below.

</> Source
<!DOCTYPE html>
<!--pro-->
<html>
<head>
	<title> Custom error handlers</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(){
			dhx4.attachEvent("onLoadXMLError",my_error_handler);
			myTree = new dhtmlXTreeObject("treeboxbox_tree","100%","100%",0);
			myTree.setImagePath("../../../skins/web/imgs/dhxtree_web/");
			myTree.load("../common/incorrect.xml")
		}
		function my_error_handler(name, xhr){
			alert("My error handler \n"+name+"\n Status:"+xhr.status);
		}
	</script>
</head>
<body onload="doOnLoad()">
	<h1>Custom error handlers</h1>
	<p>The current sample demonstrates how custom errors notifications look like. You can ealisy set the error handler using the code mentioned below.</p>
	<table>
		<tr>
			<td>
				<div id="treeboxbox_tree" class="tree_demo_samples"></div>
			</td>
			<td rowspan="2" style="padding-left:25px" valign="top">
			</td>
		</tr>
		<tr>
			<td></td>
		</tr>
	</table>
</body>
</html>

Documentation

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