Basically tells datatables which columns an attribute will be applied to. Doesn't apply unless you are using aoColumnDefs. So if you say 'bVisible': false, you can then add 'aTargets': [2, 5, 6] and it will only be applied to those columns.
Personally I like the linear look and readability of just using aoColumns, as each column is defined vertically, in order, each with its own attributes.
(Syntax not checked, do look at the documentation.)
Replies
http://datatables.net/usage/columns
Personally I like the linear look and readability of just using aoColumns, as each column is defined vertically, in order, each with its own attributes.
(Syntax not checked, do look at the documentation.)