From 9cea40a05b25dfc863e956f16b04e1a0eb934d88 Mon Sep 17 00:00:00 2001 From: Melloware Date: Wed, 27 Dec 2023 08:10:56 -0500 Subject: [PATCH] Fix #11091: DataExporter migration guide 13.0.0 (#11184) --- docs/migrationguide/13_0_0.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/migrationguide/13_0_0.md b/docs/migrationguide/13_0_0.md index 03b6a33b34..19697055e7 100644 --- a/docs/migrationguide/13_0_0.md +++ b/docs/migrationguide/13_0_0.md @@ -39,6 +39,10 @@ * `DashboardColumn` and `DefaultDashboardColumn` are deprecated in favor of `DashboardWidget` and `DefaultDashboardWidget` * `DefaultDashboardColumn.addColumn()` will become `DefaultDashboardWidget.addWidget()` +## DataExporter + * The exporter API has been significantly re-factored to reduce the amount of internal code. + * If you use a custom exporter you may now need to register your exporter like `DataExporters.register(DataTable.class, PdfDataExporter.class, "pdf");` + ## Menu * `p:menu` always ignored the `expanded` attribute of `p:submenu` in the past. As the default is `expanded=false`, you need to set it to `true`.