serializes to CSV string
text_only | boolean | optional, force serialization of the text values (skip HTML elements), false by default |
Available only in PRO Edition
//serialize grid to CSV format
var csv=mygrid.serializeToCSV();
//serialize grid to CSV format, only the text values will be serialized
var csv=mygrid.serializeToCSV(true);
Back to top