Table tools saving

Table tools saving

borninmotionborninmotion Posts: 18Questions: 2Answers: 0

how can i ignore title of table in saving ?

This question has an accepted answers - jump to answer

Answers

  • pparkerpparker Posts: 3Questions: 0Answers: 0

    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.

  • visionxvisionx Posts: 22Questions: 4Answers: 5

    You can alter the "sTitle" property in the aButtons.

    "aButtons": [

                                { 
                                            "sExtends": "csv", 
                                            "sTitle": "test" + new Date().getTime(),
                                            "bBomInc": true,
                                            "sFileName": "*.csv"
    
                                        }]
    
  • borninmotionborninmotion Posts: 18Questions: 2Answers: 0

    the point is - to hide title of column th when i save data as text,csv

  • visionxvisionx Posts: 22Questions: 4Answers: 5
    Answer ✓

    You can set "header" values to false as follows then it will not include title of the columns in export data.

                                        { 
                                            "sExtends": "csv", 
                                            "sFileName": "*.csv",
                                            "bHeader":false,
    
                                        }
    
  • borninmotionborninmotion Posts: 18Questions: 2Answers: 0

    Perfect - thanx - visionx

This discussion has been closed.