Table tools saving
Table tools saving
borninmotion
Posts: 18Questions: 2Answers: 0
how can i ignore title of table in saving ?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
search for where it says sfilename or something, and it will save various files as *.pdf, or *.csv, or *.xls
The * - asterisk - will input the Title Tag of the element in question. To get rid of this, replace * with something else, possibly a fixed title string.
You can alter the "sTitle" property in the aButtons.
"aButtons": [
the point is - to hide title of column th when i save data as text,csv
You can set "header" values to false as follows then it will not include title of the columns in export data.
Perfect - thanx - visionx