快速的jQuery插件和PHP表格生成器 Watajax
- 授权协议: Apache
- 开发语言: PHP JavaScript
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/watajax/
软件介绍
Watajax 是一个PHP和jQuery结合起来用来快速生成网页表格数据的解决方案。
示例代码:
PHP:
<?php
// Connect to the database first if you plan on using the Sql version of Watajax.
require_once("lib/Watajax.class.php");
$Watajax = new WatajaxSql();
$Watajax->columns = array(
"id" => array("name" => "#", "sort_type" => "numeric", "hide" => true),
"firstname" => array("name" => "First name", "transform" => '<img src="'.URI.'/images/icons/vcard.png" valign="absmiddle" /> !firstname'),
"lastname" => array("name" => "Last name"),
"email" => array("name" => "E-mail adress", "transform" => '<a target="_blank" rel="nofollow" href="show_reciptient.php?id=!id">!email</a>'),
"tools" => array("name" => "", "virtual" => true, "transform" => '<a target="_blank" rel="nofollow" href="edit.php?id=!id">edit</a>'));
$Watajax->run();
?>
jQuery:
<script type="text/javascript">
$(document).ready(function() {
$("#watajax_table").watajax({ajax_connector:"ajax.php", table_id: "contacts"});
})
</script>
设计原本
Frederick P. Brooks, Jr. / InfoQ中文站、王海鹏、高博 / 机械工业出版社 / 2011-1-1 / 55.00元
无论是软件开发、工程还是建筑,有效的设计都是工作的核心。《设计原本:计算机科学巨匠Frederick P. Brooks的思考》将对设计过程进行深入分析,揭示进行有效和优雅设计的方法。 本书包含了多个行业设计者的特别领悟。Frederick P. Brooks, Jr.精确发现了所有设计项目中内在的不变因素,揭示 了进行优秀设计的过程和模式。通过与几十位优秀设计者的对话,以及他自己在几个设计......一起来看看 《设计原本》 这本书的介绍吧!
