您好,不好意思,这个块还是有点区别的,对于自定义模板里面的控件的事件的方法,是要通过addEventListener来添加上去的,例如之前给您的demo里面我又在里面给button添加了mouseout事件,
theGrid.hostElement.addEventListener('mouseout', function(e) {
var target = wijmo.closest(e.target, 'button');
if (target instanceof HTMLButtonElement && target.name) {
alert('hello');
}
});
希望能帮到您。 |