DataTables: column定义中的data,name和render


	$( document ).ready(function() {
		//正式初始化table
		table =	$('#myTable').DataTable({
   
		         "columns": [	                    
		                     { "data": "id",  //第1列的数据将基于ajax返回结果中的"id"字段,如果没有指定render函数,这个字段就是本列要展示的内容。
		                       "name": "idendity", //列名。用来标识此列,服务端可以根据这个字段实现按名字找到列。
				       "render":	function ( data, type, full, meta ) { //定义了render函数,本列按此方法来展示内容。
				                        return "<b>" + data + "</b>" + full.createdTime; //返回一段html, 显示时ID加粗,并把创建时间也显示出来(ajax返回结果中的createdTime字段)
				         }, ...
                        ]
	       });	
        ...
       }); 


Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.