I been doing some research on the internet and I haven't found anything yet. Simple question here, using datables, can I add a column based on calculations from different columns? Thanks
Edit. NVM, I think I got doing this
aoColumns: [
{ mData: 'column1' },
{ mData: 'column2' },
{ mRender: function(data, type, row){
return (row.column1/ row.column2)
}}