I want to use autocomplete which contains concatenated information. But how can I set the cell only with the value without other concatenated information. Just like this:
columns: [
{
type: 'autocomplete',
strict: true,
visibleRows: 2,
source: function (query, process) {
$.ajax({
url: '/datatables/autocomplete?col=buyer',
minLength: 2,
data: {
query: query
},
success: function (response) {
process(response);
}
});
}
},
Thanks for your help!