Custom styles

Add row

Remove Selected Row

</> Source
<!DOCTYPE html>
<html>
<head>
	<title>Custom styles</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, myDataProcessor;
		function doOnLoad(){
			// init grid and set its parameters (this part as always)
			myGrid = new dhtmlXGridObject('gridbox');
			myGrid.setImagePath("../../../codebase/imgs/");
			myGrid.setHeader("Sales,Book Title,Author,Price,In Store,Shipping,Bestseller,Date of Publication");
			myGrid.setInitWidths("80,150,100,80,80,80,80,100");
			myGrid.setColAlign("right,left,left,right,center,left,center,center");
			myGrid.setColTypes("dyn,ed,txt,price,ch,coro,ch,ro");
			myGrid.setColSorting("int,str,str,int,str,str,str,date");
			myGrid.init();
			myGrid.enableAutoWidth(true);
			myGrid.load("php/get.php"); // used just for demo purposes
			//
			myDataProcessor = new dataProcessor("php/update.php"); // lock feed url
			myDataProcessor.init(myGrid); // link dataprocessor to the grid
			myDataProcessor.setUpdateMode("off"); // link dataprocessor to the grid
			myDataProcessor.styles={
				updated:"font-style:italic; color:green;",
				inserted:"font-weight:bold; color:green;",
				deleted:"font-weight:bold; color:red;",
				invalid:"color:orange; text-decoration:underline;",
				error:"color:red; text-decoration:underline;",
				clear:"font-weight:normal;text-decoration:none;"
			};
		}
	</script>
</head>
<body onload="doOnLoad()">
	<div id="gridbox" style="width:750px;height:350px;overflow:hidden"></div>
	<p><a href="javascript:void(0)" onclick="myGrid.addRow((new Date()).valueOf(),[0,'','','',false,'na',false,''],myGrid.getRowIndex(myGrid.getSelectedId()))">Add row</a></p>
	<p><a href="javascript:void(0)" onclick="myGrid.deleteSelectedItem()">Remove Selected Row</a></p>
	<input type="button" name="some_name" value="update" onclick="myDataProcessor.sendData();">
</body>
</html>

Documentation

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