Active fields
</> Source
<!DOCTYPE html>
<html>
<head>
<title>Active fields</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.setColumnIds("sales,book,author,price,store,shipping,best,date");
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.enableAutoWidth(true);
myGrid.init();
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.setTransactionMode("GET", false)
myDataProcessor.setDataColumns([false,true,true,false]); // only second and third columns will trigger data update
}
</script>
</head>
<body onload="doOnLoad()">
<p>Only second and third column will trigger data update</p>
<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>
</body>
</html>
Documentation
Check documentation to learn how to use the components and easily implement them in your applications.