Per cell rules
</> Source
<!DOCTYPE html>
<html>
<head>
<title>Per cell rules</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>
<script>
var myGrid;
function doOnLoad(){
myGrid = new dhtmlXGridObject('gridbox');
myGrid.setImagePath('../../../codebase/imgs/');
myGrid.setHeader("Column A, Column B");
myGrid.setInitWidths("100,250");
myGrid.setColAlign("right,left");
myGrid.setColTypes("ed,ed");
myGrid.enableValidation(true,true);
myGrid.setColSorting("str,str");
myGrid.enableMultiselect(true);
myGrid.init();
myGrid.enableAutoHeight(true);
myGrid.load("../common/vtypes.xml");
}
</script>
</head>
<body onload="doOnLoad()">
<div id="message" style="height:40px; font-weight:bold; color:red;"></div>
<div id="gridbox" style="width:350px;height:250px;background-color:white;overflow:hidden"></div>
</body>
</html>
Documentation
Check documentation to learn how to use the components and easily implement them in your applications.