OrgChart clickNodeEvent

OrgChart clickNodeEvent

by denvit

HTML

<script src="http://www.getorgchart.com/GetOrgChart/getorgchart/getorgchart.js"></script>
<link rel="stylesheet" href="http://www.getorgchart.com/GetOrgChart/getorgchart/getorgchart.css">
<div id="people"></div>

CSS

html, body {margin: 0px; padding: 0px;height: 100%; overflow: hidden; }
#people {width: 100%;height: 100%; }

JavaScript

var orgchart = new getOrgChart(document.getElementById("people"), {
      clickNodeEvent: clickHandler,
      dataSource: [{
        id: 1,
        parentId: null,
        Name: "Amber McKenzie"
      }, {
        id: 2,
        parentId: 1,
        Name: "Ava Field"
      }, {
        id: 3,
        parentId: 1,
        Name: "Evie Johnson"
      }]
    });

    function clickHandler(sender, args) {
      window.location.href = "http://jsfiddle.net/";
    }