Composing data from AJAX source
Composing data from AJAX source
Hi,
I currently have a DataTables set up with server-side processing. However, because of some recent changes in server-side code, I'm no longer able to send DataTables all the fields. For example I have a column Customer's name, which is composed from first_name and last_name and these data are sent to user via AJAX. Is it possible to merge two fields into one directly in DataTables's javascript code?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Sure - use
columns.render
. A number of my Editor examples use exactly that (example).Allan