Check documentation for the latest version of dhtmlxSuite enableCSVHeader DHTMLX Docs

enableCSVHeader

enables recognizing the first row in CSV as the header

void enableCSVHeader(boolean mode);
modebooleantrue/false

Available only in PRO Edition

Example

//enable recognizing first row in CSV as header
myTreeGrid.enableCSVHeader(true);
//disable recognizing first row in CSV as header
myTreeGrid.enableCSVHeader(false);

Back to top