官方文档上的这个方法的使用方法为
var doc = new wijmo.pdf.PdfDocument({
ended: function (sender, args) {
wijmo.pdf.saveBlob(args.blob, 'FlexGrid.pdf');
}
});
wijmo.grid.pdf.FlexGridPdfConverter.drawToPosition(grid, doc, new wijmo.Point(0, 0), null, null, {
maxPages: 10,
styles: {
cellStyle: {
backgroundColor: '#ffffff',
borderColor: '#c6c6c6'
},
headerCellStyle: {
backgroundColor: '#eaeaea'
}
}
});
但是我执行的话也不会报错,正常结束了,但是没有输出pdf是怎么回事啊?是我漏了什么吗? |