TreeGrid - font awesome icons
</> Source
<!DOCTYPE html>
<html>
<head>
<title>TreeGrid - font awesome icons</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/fonts/font_awesome/css/font-awesome.min.css"/>
<link rel="stylesheet" type="text/css" href="../../../codebase/dhtmlx.css"/>
<script src="../../../codebase/dhtmlx.js"></script>
<script>
var myTreeGrid;
function doOnLoad() {
myTreeGrid = new dhtmlXGridObject('gridbox');
myTreeGrid.setImagePath("../../../codebase/imgs/");
myTreeGrid.setIconset("fontawesome");
myTreeGrid.setHeader("Tree,Plain Text,Text,Check 1,Check 2");
myTreeGrid.setInitWidths("150,100,100,100,100");
myTreeGrid.setColAlign("left,left,left,center,center");
myTreeGrid.setColTypes("tree,ed,txt,ch,ch");
myTreeGrid.setColSorting("str,str,str,na,str");
myTreeGrid.init();
myTreeGrid.load("../common/icons.xml");
}
</script>
</head>
<body onload="doOnLoad();">
<div id="gridbox" style="width:570px;height:337px;background-color:white;"></div>
</body>
</html>
Documentation
Check documentation to learn how to use the components and easily implement them in your applications.