Release date: 2026-06-05


Accure data grid export functionality

Overview

Accure data grid includes a built-in export feature that allows users to download grid data as a file directly from the toolbar. The export respects the grid’s current column configuration and supports both server-loaded and client-bound data.

Accessing Export

Clicking the button opens an export dialog where the user selects the export format and optionally provides a custom file name before downloading

Supported Formats

Format

Extension

Notes

Excel

.xlsx

Formatted headers with bold, grey background; column widths auto-adjusted

CSV

.csv

UTF-8 encoded, RFC 4180 compliant quoting

Column behaviour

  • Only visible columns are included in the export
  • Columns appear in the same order as defined by OrderIndex
  • Column titles are used as headers; falls back to the property name if no title is set
  • Format strings defined on columns (FormatString) are applied to dates, numbers, and other IFormattable values

Data loading

  • When the grid uses a LoadData callback (server-side / paginated data), the export automatically triggers a full data load — all records are fetched without pagination before generating the file
  • When data is bound directly to the grid (GridData), the currently loaded data is exported as-is

Dynamic data support

Grids using IsDynamicData = true (where the data type is Dictionary<string, object>) are fully supported. All format options and column settings behave identically to strongly-typed grids.