leslieshenfang 发表于 2019-3-28 10:58:05

怎么给wijmo整行添加鼠标左键点击事件

怎么给wijmo整行添加鼠标左键点击事件

KevinChen 发表于 2019-3-28 15:21:42

您好,鼠标事件实际上是添加在FlexGrid上的,采用hitTest来判断点击的是具体某一行,

可以参考学习指南:

https://demo.grapecity.com.cn/wijmo5/learningwijmo/#DLYKp

代码示例:

theGrid.addEventListener(theGrid.hostElement, 'click', function(e) {
            var ht = theGrid.hitTest(e);
            alert("点击行:"+ ht.row);
      });
页: [1]
查看完整版本: 怎么给wijmo整行添加鼠标左键点击事件