使用格式化数据渲染,使用DataTables.net中的原始数据进行排序

时间:2017-07-11 11:07:58

标签: javascript jquery datatables datatables-1.10

以下是我的数据表配置示例

{
    "dom"        : "rltip",
    "processing" : true,
    "serverSide" : false,
    "order"      : [ [ 1 , "desc" ] ],
    "searching"  : false,
    data: [
       { "column-a" : "Sample Data A" , "column-b" : 10 , "column-c" : "Blah Blah" },
       { "column-a" : "Sample Data B" , "column-b" : 5 , "column-c" : "Blah Blah" },
       { "column-a" : "Sample Data C" , "column-b" : 38 , "column-c" : "Blah Blah" }
    ],
    "columnDefs" : [
        {
            "targets"   : 0,
            "orderable" : false,
            "data"      : "column-a"
        },
        {
            "targets"   : 1,
            "orderable" : false,
            "data"      : "column-b"
        },
        {
            "targets"   : 2,
            "orderable" : true,
            "className" : "title",
            "data"      : "column-c"
        }
     ]
}

我想格式化显示的数据,但是在排序和其他后端相关的东西上,我想使用原始的未格式化数据。

重要提示:我必须在客户端(javascript)执行此操作。

我已经在 columnDefs 上尝试了渲染函数回调,但它似乎无效。

"render" : function( data , type , row ) {

    if ( type === "sort" )
        return data;

    // format data here
    return data; // This is a formatted data

}

我的意思是“它似乎不起作用”是排序被打破,它将考虑格式化数据,而不仅仅是原始数据。

我发现这篇旧的相关文章,但它似乎不再适用于较新版本的datatables.net

https://datatables.net/forums/discussion/8249/filtering-using-the-rendered-text-however-sorting-using-the-original-value

我使用的是 1.10.15

版本

1 个答案:

答案 0 :(得分:4)

在{em>类型中多次调用render function并使用不同的值。如果您将未格式化的数据仅设置为排序类型,那么您将错过排序相关类型的其他数据,例如类型。而是处理 type display 的情况,并返回 type 中任何其他值的未格式化数据。

"render" : function( data , type , row ) {    
    if ( type === "display" )
    {
       // format data here
       return data; // This is a formatted data
    }    
    return data; // This is a unformatted data    
}