Hi team,
I'm trying to prevent print from opening as a popup and instead open the contents in a new tab.
Im using the scheduler.features.print.showPrintDialog(); API
I see there's a config for openInNewTab but that doesnt seem to work, here is the config I'm using for the printFeature
{
paperFormat: "Letter",
orientation: "landscape",
exporterType: "singlepage",
rowsRange: "all",
scheduleRange: "currentview",
openInNewTab: true,
exportDialog: {
items: {
columnsField: { hidden: true },
rowsRangeField: { hidden: true }
}
}
}