我想将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
},
搜索记录正确,但目前我没有记录空