Smart Rendering and colspan

You are allowed to enable both smart rendering and colspan modes in your grid.

Loading data
Select row with id=r36; myGrid.setSelectedRow("r36");
Select row with id=r72; myGrid.setSelectedRow("r72");
</> Source
<!DOCTYPE html>
<!--pro-->
<html>
<head>
	<title>Smart Rendering and colspan</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("Sales,Book Title,Author,Price,In Store,Shipping,Bestseller,Date of Publication");
			myGrid.setInitWidths("50,80,250,70,70,70,70,100");
			myGrid.setColAlign("right,left,left,right,center,left,center,center");
			myGrid.setColTypes("ed,ed,ed,price,ch,co,ro,ro");
			myGrid.enableCollSpan(true);
			var combobox = myGrid.getCombo(5);
			combobox.put("1","1 Hour");
			combobox.put("12","12 Hours");
			combobox.put("24","24 Hours");
			combobox.put("48","2 days");
			combobox.put("168","1 week");
			combobox.put("pick","pick up");
			combobox.put("na","na");
			myGrid.setColSorting("int,str,str,int,str,str,str,date");
			myGrid.attachEvent("onXLS",function(){ document.getElementById("a_1").style.display="block"; });
			myGrid.attachEvent("onXLE",function(){ document.getElementById("a_1").style.display="none"; });
			myGrid.enableAutoWidth(true);
			myGrid.init();
			myGrid.enableSmartRendering(true);
			myGrid.load("../common/smartrend_cl.xml");
		}
	</script>
</head>
<body onload="doOnLoad()">
	<h1>Smart Rendering and colspan</h1>
	<p>You are allowed to enable both smart rendering and colspan modes in your grid.</p>
	<div style="height:20px;">
		<div id="a_1" style="color:red;">Loading data</div>
	</div>
	<div id="gridbox" style="width:750px; height:450px; background-color:white;overflow:hidden"></div>
	<a href="javascript:void(0)" onClick="myGrid.setSelectedRow('r36');">Select row with id=r36; myGrid.setSelectedRow("r36");</a><br/>
	<a href="javascript:void(0)" onClick="myGrid.setSelectedRow('r72');">Select row with id=r72; myGrid.setSelectedRow("r72");</a><br/>
</body>
</html>

Documentation

Check documentation to learn how to use the components and easily implement them in your applications.