wss. 发表于 2020-7-15 10:38:33

根据条件阻止粘贴事件

在单元格进行粘贴的时候,根据某些条件阻止部分单元格的粘贴事件
这个事件是什么,怎么阻止?
我尝试设置
autoClipboard的true或者false,发现不可行

KevinChen 发表于 2020-7-15 11:34:14

本帖最后由 KevinChen 于 2020-7-15 11:35 编辑

你好,用pastingCell事件的cancel参数,参考API:
https://demo.grapecity.com.cn/wijmo/api/classes/wijmo_grid.flexgrid.html#pastingcell

示例代码:
      pastingCell: function(s,e){
            console.log(e)
            e.cancel = true;
      }

wss. 发表于 2020-7-15 14:37:47

本帖最后由 wss. 于 2020-7-15 15:30 编辑

KevinChen 发表于 2020-7-15 11:34
你好,用pastingCell事件的cancel参数,参考API:
https://demo.grapecity.com.cn/wijmo/api/classes/wijm ...
我在数值类型的单元格复制粘贴('342')上去结果内部值为字段类型我想设置对应复制值的内容

KevinChen 发表于 2020-7-15 19:07:18

您好,没太理解您的意思,默认粘贴是根据目标字段的字段类型走的,而粘贴板中的内容 都是字符串,所以字段类型是没办法带入粘贴板的
页: [1]
查看完整版本: 根据条件阻止粘贴事件