Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在探索导出到 pdf 的功能。我在一个页面中有多个网格,并且希望能够通过单击按钮来打印网格中的所有数据。我没有找到任何好的文档。任何人都可以帮助我如何处理或指向文档吗?
在 ui-grid.js 中搜索 pdfExport 函数。如果您的网格包含 enableGridMenu: true 并且您单击 Export (all || visible) data as pdf,这就是从一个网格中调用的内容。不要忘记包含 uiGridExporter 指令。因此,在您的按钮单击(或任何事件)上,只需为您要为其创建 pdf 的每个网格调用 pdfExport。