SmallWhiteClouds

Results 3 comments of SmallWhiteClouds

bug复现可以参考:https://www.visactor.io/vtable/guide/plugin/filter?version=1.22.0 `// import * as VTable from '@visactor/vtable'; // 使用时需要引入插件包 @visactor/vtable-plugins // import { FilterPlugin } from '@visactor/vtable-plugins'; // 正常使用方式 const filterPlugin = new FilterPlugin({}); // 官网编辑器中将 VTable.plugins 重命名成了 VTablePlugins...

> 应该用 getCellRelativeRect 拿相对定位,而不是 getMergeCellRect 可以这样临时修复: const origShow = FilterToolbar.prototype.show; FilterToolbar.prototype.show = function(col, row, filterModes) { origShow.call(this, col, row, filterModes); // 先运行原来的逻辑 > > ``` > // Now override the...