Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Note
titleContent Freeze

As of July 25th, 2023, there is a content freeze on this page.

This method initiates a file download of the grid data.  The call to this method can be attached to a button or a similar element's onclick event to initiate the download manually instead of using the "csv export" property on the grid, which creates a paging bar with an export link.  The data is output in CSV (Comma Separated Values) format.  If the grid's "export with headings" property is set to true, grid headings are exported in addition to the grid data.

...

Code Block
javascript
javascript

getObj("Grid1").grid.exportCSV("invoices");

...