有没有办法从 AG-grid 中的浮动过滤器获取用户输入?
我有一个带有 ag-grid 数据表的 React 应用程序。我已经为 Ag-grid 数据创建了自定义 Excel 导出,因为我们还不想投资企业版本。唯一的问题是,当使用浮动过滤器时,即使应用过滤器后,整个数据也会导出到 Excel 工作表。我想知道是否有一种方法可以从浮动过滤器读取用户输入并相应地过滤输出数据?
I have a react application with an ag-grid data table. I have created a custom Excel Export for the Ag-grid data since we don’t want to invest in the Enterprise version yet. The only problem with this is when floating filters are used the entire data gets exported to the excel sheet even after the filter is applied. I was wondering if there is a way to read the user input from the floating filters and filter the output data accordingly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 gridApi.getFilterModel() 方法。请参阅有关过滤器 API 的文档。
Use
gridApi.getFilterModel()
method. See docs on Filter API.