Example #1
0
$rows = $db->query('select * from City', PDO::FETCH_OBJ)->fetchAll();

$table = new Table;

$table->add(
		array(
			array('header' => 'ID', 'value' => function($o) { return $o->ID;}),
			array('header' => function() { return 'Name'; }, 'value' => function($o) {return $o->Name; }),
			array('value' => 'Test Value')
		)
	)
	->setDataSource($rows);

?>

<html>
<head>
	<link rel="stylesheet" type="text/css" href="datatables.css" />
	<link rel="stylesheet" type="text/css" href="datatables_jui.css" />
</head>
<body>
	<? echo $table->render(); ?>
</body>

	<script type="text/javascript" src="jquery.js"></script>
	<script type="text/javascript" src="datatables.js"></script>

	<? echo $table->js(); ?>

</html>