Page 1 of 1

[Added] Browse/Print: Direct CSV Download from HTML Table (nuBuilder 4.9)

Posted: Thu Jul 10, 2025 5:26 pm
by admin
A new feature has been added to the Browse/Print interface: Download as CSV


You can now download the HTML table directly as a CSV file — making it easier to export and manipulate data outside nuBuilder.

Shortcut: Press **Ctrl + Shift + D** while in Browse/Print to instantly trigger the download!

Reminder: Press Ctrl + Shift + P to display the Print View.
If the nuPrintButton setting is enabled, you can also access Print View by clicking the Print button or choosing Options → Print.

print download.png

Re: [Added] Browse/Print: Direct CSV Download from HTML Table (nuBuilder 4.8.x)

Posted: Mon Jul 21, 2025 8:42 am
by kev1n
Customise CSV Export

You can now customise the Browse/Download to CSV functionality by setting export options directly in the form's Custom Code section.

To use this feature, define your export options using the following code:

Code: Select all

var exportOptions = {
    delimiter: ';',
    lineTerminator: '\r\n',
    includeHeaders: true,
    bom: true,
    fileName: 'custom_export.csv',
    autoDownload: true,
    autoClose: false
};

nuPrintCSVExportOptions(exportOptions);
Available Options:

delimiter – Field separator (default: ;)
lineTerminator – Line ending (default: \r\n)
includeHeaders – Whether to include column headers (default: true)
bom – Add BOM for UTF-8 encoding (default: true)
fileName – Name of the exported file, e.g. export.csv (default: a form's description + .csv extension)
autoDownload – Automatically start download when the page loads (default: false)
autoClose – Close the tab after download completes (default: false)

This gives you full control over how CSV files are generated from your form’s Browse screen.

Re: [Added] Browse/Print: Direct CSV Download from HTML Table (nuBuilder 4.8.x)

Posted: Wed Jul 23, 2025 11:58 am
by kev1n
A new feature has been added to the Browse/Print interface: Copy to Clipboard and CSV Export Options

You can now quickly copy the table contents to your clipboard for pasting into Excel or other apps.

Shortcut: Press Ctrl + Shift + C while in Browse/Print to instantly copy the table!
browse_print.png

An Options button has also been added, letting you configure CSV export settings such as the delimiter, file name, and more.

csv export options.png