Check documentation for the latest version of dhtmlxSuite enableCSVAutoID DHTMLX Docs

enableCSVAutoID

enables the mode in which IDs for the rows loaded from CSV are autogenerated

void enableCSVAutoID(boolean mode);
modebooleantrue/false

Available only in PRO Edition

Example

//enable autogenerated rows IDs for the CSV loading
myGrid.enableCSVAutoID(true);
//disable autogenerated rows IDs for the CSV loading
myGrid.enableCSVAutoID(false);

Back to top