Custom rule

"Column A" - min length 4
"Column B" - max length 10

</> Source
<!DOCTYPE html>
<html>
<head>
	<title>Custom rule</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.setColValidators("Min4,Max10");
			myGrid.setColSorting("int,str");
			myGrid.enableMultiselect(true);
			myGrid.enableAutoWidth(true);
			myGrid.enableAutoHeight(true);
			myGrid.init();
			myGrid.load("../common/grid.xml");
		}
		dhtmlxValidation.isMin4=function(a){
			return a.length>=4;
		};
		dhtmlxValidation.isMax10=function(a){
			return a.length<=10;
		};
	</script>
</head>
<body onload="doOnLoad()">
	<p>"Column A" - min length 4<br>"Column B" - max length 10</p>
	<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.