我想使用存储在列选项中的一些值来呈现单元格值,但我看不到访问当前呈现列的明显方法。
附加到源数据似乎是多余的,最终可能会产生非常大的 json 响应。
例如
$('#foo').dataTable({
sAjaxSource : 'source.php',
aoColumns : [
{
someExtraValue : 'bar'
mRender : function(data, type, full) {
// some how get the column's options for this cell
return data + column.someExtraValue;
}
}
]
});
返回数据