所有这些问题都与GetOrgChart
有关我实际上并没有将它用于组织结构图。我用它来显示其他分层数据。
由于 约翰
答案 0 :(得分:0)
这是一个如何将可点击链接嵌入其中一个组织框
的示例
$("#people").getOrgChart({
renderBoxContentEvent: function( sender, args ) {
if (args.id == 1){
args.boxContentElements.push('<a xlink:href="http://www.GetOrgChart.com/"><text fill="#ffffff" width="330" x="10" y="100">go to www.getorgchart.com</text></a>');
}
},
dataSource: [
{ id: 1, parentId: null, Name: "Amber McKenzie", Title: "CEO", Address: "MyAddress"},
{ id: 2, parentId: 1, Name: "Ava Field", Title: "CTO", Phone: "+359 888 888 888", Image: "http://www.getorgchart.com/GetOrgChart/getorgchart-demos/images/f-6.jpg"},
{ id: 3, parentId: 1, Name: "Evie Johnson", Title: "CFO", Car: "BMW"}]
});
html, body {margin: 0px; padding: 0px;height: 100%; overflow: hidden; }
#people {width: 100%;height: 100%; }
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://getorgchart.com/GetOrgChart/getorgchart/getorgchart.js"></script>
<link href="http://getorgchart.com/GetOrgChart/getorgchart/getorgchart.css" rel="stylesheet" />
<div id="people"></div>
以下是混合形状的示例 http://www.getorgchart.com/Demos/Mixed-Shapes
关于您的上一个问题,限制取决于您的浏览器