Extracted from: http://stackoverflow.com/questions/16061894/jquery-easyui-add-link-to-cell

HTML:

 <table id="dgContactSearch" title="Benutzer Suche" class="easyui-datagrid" style="height:160px"
url="getContacts.php"
toolbar="#toolbarContactSearch" pagination="true"
rownumbers="true" fitColumns="true" singleSelect="true">
<thead>
<tr>
<th data-options="field:'firma',width:80,align:'left',formatter:formatCustomerId">Kunde</th>
<th data-options="field:'name',width:50,align:'left',formatter:formatContactUrl">Name</th>
<th field="function" width="50">Funktion</th>
<th field="phone" width="50">Phone</th>
<th field="email" width="50">Email</th>
<th field="mobile" width="50">Mobile</th>
<th field="fax" width="50">Fax</th> <th field="comment" width="120">Kommentare</th>
</tr>
</thead>
</table>
 

Javascript:

 <script>
function formatCustomerId(val,row){
var url = "customerView.php?id=";
return '<a href="'+url + row.customer_id+'">'+val+'</a>';
} function formatContactUrl(val,row){
var url = "contactView.php?id=";
return '<a href="'+url + row.id+'">'+val+'</a>';
}
</script>
 

REF:

http://blog.csdn.net/com360/article/details/6537074
http://www.jeasyui.com/documentation/datagrid.php
http://jeasyui.com/demo/main/index.php?plugin=DataGrid
http://www.thinkphp.cn/code/207.html

最新文章

  1. RaphaelJS实践--猫和老鼠矢量图展示
  2. FindBugs使用
  3. 【现代程序设计】homework-06
  4. Android Studio使用中的小常识
  5. Android IOS WebRTC 音视频开发总结(二四)-- p2p调用堆栈
  6. [原创]Devexpress XtraReports 系列 7 创建Drill-Down(向下钻取)报表
  7. python--class test
  8. GM8180启动过程调试
  9. spring-oauth-server实践:客户端和服务端环境搭建
  10. pclConfig.cmake or PCLConfig.cmake
  11. HashMap内部结构及实现原理
  12. thymeleaf-在font标签中的使用
  13. Python 生产者与消费者模型
  14. delphi XML简单处理
  15. Which path should be used jdk or jre for JAVA_HOME environment variable?
  16. pandas2
  17. 【JS】怎样同一时候处理多个window.onload事件
  18. 题解 P2472 【[SCOI2007]蜥蜴】
  19. Codeforces Round #489 (Div. 2) E - Nastya and King-Shamans
  20. CentOS下SVN使用

热门文章

  1. 与MySQL交互(felixge/node-mysql)
  2. mysql日志文件
  3. ASP.NET 运行机制续(完结)
  4. SiteMesh3 介绍和使用
  5. mysql存储过程中字符串参数单引号
  6. 解决Maven默认仓库没有的jar下载(二)
  7. nenu contest2
  8. SSAO
  9. windows下创建.htaccess文件之讲解
  10. Unity3d修改FBX文件的动画名方法