surely-table icon indicating copy to clipboard operation
surely-table copied to clipboard

Performant advanced table component

Results 128 surely-table issues
Sort by recently updated
recently updated
newest added

版本:3.03 可复现BUG。 当表中数据个数较少时,拖动一行并向下移动时,表格数据滚动后,并没有自适应恢复原位。 ![微信截图_20230413170701](https://user-images.githubusercontent.com/8354534/231711336-1ea38f50-b283-4b22-9c84-1017d8dc2485.png) ![微信图片_20230413170720](https://user-images.githubusercontent.com/8354534/231711364-ea5d1a02-6731-4a5f-b674-3f065c8dbc0c.png) ![image](https://user-images.githubusercontent.com/8354534/231712513-b0d710bc-5183-48b2-aad4-98fdfbf2ecea.png) 仅有一个数据时也可拖动并出现上述BUG。 以下链接可复现。 [https://codesandbox.io/s/surely-3-03-drag-bug-hbb7kc](url)

version: 3.0.3 需求:数字不换行,根据数字自适应一行显示 ![image](https://user-images.githubusercontent.com/16360244/230821252-5b928a29-0187-4597-8d16-a370036fbc32.png)

版本:3.0.2。 问题:当数据量比较大并且每个单元格有复杂判断逻辑(比较耗时)会渲染各种业务标签组件出来,虽然表格支持虚拟加载但是**滚动过程中会一直加载单元格** 导致单元格相关事件一直触发,滚动出现明显卡顿。但是看官网首页例子却是没有这个问题,不知道是有做什么处理还是和数据量有关系。 下面这段代码是自己尝试实现防抖,通过清理数据,重新加载数据。但是只能支持横向滚动,要解决纵向很麻烦而且不易用。 组件内部能否在滚动时可以设置数据延迟加载时间做防抖。 ``` import { ref } from 'vue'; import { cloneDeep, debounce } from 'lodash-es'; const columns = ref([] as any); const dataSource = ref([] as...

如全局关闭表格动画animate-rows="false"

使用默认的自动求和total,精度丢失 ![image](https://user-images.githubusercontent.com/42940041/224598180-2b392ae3-143a-4f6e-b3be-e5432266548b.png) ![1678676379897](https://user-images.githubusercontent.com/42940041/224598250-0aed89e7-7548-41c0-ac1c-821e630d736d.png) 能否增加参数:保留的小数位数,根据保留的小数位数求和,并处理好精度问题

- 单元格 rowSpan与virtual同时使用冲突,滚动到相应的位置期望出现单元格内容,且表格的hover效果对应不正确 ![image](https://user-images.githubusercontent.com/47747634/209917045-df895039-54e8-4592-9358-8fa55178fd63.png) - 复现链接:[codesandbox](https://codesandbox.io/s/xenodochial-haze-krdgxe?file=/src/App.vue)

1. set `rowSelection` with `fixed: right` 2. add `expandedRowRender` slot with it 3. the expand column goes to the right which should be at index 1 [sample link](https://codesandbox.io/s/aged-brook-xzlwmv?file=/src/App.vue:90-111) ## version...

enhancement

demo: https://codesandbox.io/s/eloquent-dan-cqzy90?file=/src/App.vue 点击input-number的增减箭头,数值没有实时更新,鼠标移出当前cell后才会更新