summaryrefslogtreecommitdiffstats
path: root/samples/grid/02_rendering_connector.php
blob: 2c185dff908c446c2ecc13656f7fc4177e007b80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
	require_once("../config.php");
	$res= new PDO($mysql_server,$mysql_user,$mysql_pass);
	
	
	function color_rows($row){
		if ($row->get_index()%2) {
			$row->set_row_style("background-color: red");
		}
	}
	require("../../codebase/grid_connector.php");
	$grid = new GridConnector($res, "PDO");
	
	$grid->dynamic_loading(100);
	$grid->event->attach("beforeRender","color_rows");
	$grid->render_table("grid50000","item_id","item_nm,item_cd");
?>