Image/block 使用 kendos exportpdf 在页尾中断内容

Image/block of content breaking at page end with kendos exportpdf

我正在使用 kendos exportpdf 函数将 html 模板转换为 django framework.pdf 文件 comes/looks 中的 pdf 文件。当我们只使用模板中的文本时。当我使用 css(bootstrap 卡片添加内容块时,文本和块在页面末尾断开(如下图所示)。谁能帮我解决这个问题,如果要添加任何其他信息以便清楚理解,请告诉我。

Kendo 的 exportpdf 使用 Kendo 绘图库,它有一个 keepTogether 设置,允许您设置哪些 CSS 类 不应跨页拆分.

drawing.drawDOM("#content", {
  paperSize: "A4",
  margin: "2cm",
  keepTogether: ".prevent-split"
}).then(function(group){
  drawing.pdf.saveAs(group, "filename.pdf");
});

这里有更多详细信息:https://docs.telerik.com/kendo-ui/framework/drawing/pdf-output/multi-page-content#preventing-page-breaking-in-elements