搜索不适用于服务器端为true的合并列

时间:2019-05-25 18:52:18

标签: angular datatables

我想将firstname + last_name显示为一列,但是当我发现搜索无效时,我不知道它是怎么了。

当我将first_name替换为full_name时,它仅搜索名字而不使用姓氏。我将非常感激。

{
    title: 'Name',
    data: 'full_name', // what should i place here
    render: function (data, type, row) {
        if (type === 'display') {
            return row.first_name + ' ' + row.last_name;
        }
    },
    defaultContent: '',
    orderable: true,
    searchable: true
},        

搜索记录正确,但目前我没有记录空

0 个答案:

没有答案