enables recognizing the first row in CSV as the header
mode | boolean | true/false |
Available only in PRO Edition
//enable recognizing first row in CSV as header
myGrid.enableCSVHeader(true);
//disable recognizing first row in CSV as header
myGrid.enableCSVHeader(false);
Back to top