jsPDF-AutoTable: 图像不匹配要换页的行
jsPDF-AutoTable: Image does not match the row to change pages
感谢以下 jsPDF AutoTable v2.3.0 的帮助。
我有一个 table,第一列中的图像具有以下样式:
styles: {overflow: 'linebreak', columnWidth: 'wrap'},
columnStyles: {
0: {columnWidth: 25},
1: {columnWidth: 350}
},
当 table 占据两页时,图像无法正确地排入一行。
示例:https://jsfiddle.net/shinseiki86/60qrh6e1/
结果:https://i.stack.imgur.com/PykQw.png
谢谢!
已使用以下 link 中报告的问题进行修复:
drawCell: function(cell, opts) {
if (opts.column.dataKey === 0 && opts.row.index < data.rows.length) {
images.push({
elem: imgElements[opts.row.index],
x: cell.textPos.x,
y: cell.textPos.y
});
}
},
感谢以下 jsPDF AutoTable v2.3.0 的帮助。
我有一个 table,第一列中的图像具有以下样式:
styles: {overflow: 'linebreak', columnWidth: 'wrap'},
columnStyles: {
0: {columnWidth: 25},
1: {columnWidth: 350}
},
当 table 占据两页时,图像无法正确地排入一行。
示例:https://jsfiddle.net/shinseiki86/60qrh6e1/
结果:https://i.stack.imgur.com/PykQw.png
谢谢!
已使用以下 link 中报告的问题进行修复:
drawCell: function(cell, opts) {
if (opts.column.dataKey === 0 && opts.row.index < data.rows.length) {
images.push({
elem: imgElements[opts.row.index],
x: cell.textPos.x,
y: cell.textPos.y
});
}
},