我正在使用同步网格,这是很棒的!我喜欢它!但是,当我试图导出到PDF时,当我的记录按列分组时,浏览器被冻结,我需要关闭选项卡,我有一个问题。CSVExport和ExcelExport工作得很好。我有列模板,但是图标没有显示有人有什么建议吗?
发布于 2022-01-25 03:17:00
Grid excel和pdf导出从Grid数据源中提取导出文档的值,因此默认情况下不导出模板内容。这是基于当前架构的网格的默认行为。
但是,您可以通过将其对应的base64字符串设置为excelQueryCellInfo(导出到excel之前每个单元格的触发器)和pdfQueryCellInfo(导出到pdf之前每个单元格的触发器)事件的值属性来导出模板列的图像/图标,如下面的代码片段所示。
// Grid’s excelQueryCellInfo and pdfQueryCellInfo event handlers
exportQueryCellInfo(args) {
if (args.column.headerText === 'Employee Image') {
if (args.name === "excelQueryCellInfo") {
// Condition executes for the ‘Employee Image’ column on excel export
args.image = { height: 75, base64: args.data["EmployeeImage"], width: 75 };
} else {
// Condition executes for the ‘Employee Image’ column on pdf export
args.image = { base64: args.data["EmployeeImage"] };
}
}
},
https://stackoverflow.com/questions/70831201
复制相似问题