How can you get a column's name (not header/title)?
How can you get a column's name (not header/title)?
jiku
Posts: 2Questions: 2Answers: 0
If you have
column { name: "something" }
is there some way to query for that name? Something like
dt.column(idx).name
This discussion has been closed.
Answers
I found this and it works:
"data": function(d) {
alert(d.columns[0]['name']);
},
http://www.datatables.net/forums/discussion/25361/sending-custom-column-attributes-to-the-server-on-post