gpt4 book ai didi

javascript - 如何获取 AngularJS ngHandsontable 的句柄

转载 作者:行者123 更新时间:2023-12-03 08:52:46 25 4
gpt4 key购买 nike

我有一个 AngularJS 项目,我在 HTML 代码中定义了一个 ngHandsontable。我正在尝试获取表的句柄,以便将“afterChange” Hook 附加到它。如何获取表的句柄?

代码示例:

HTML

<div id="hoTableContainer">
<hot-table id="handsontableId" datarows="myData">
<hot-column data="name" title="'Name'"></hot-column>
<hot-column data="group" title="'Group'" readOnly></hot-column>
<hot-column data="unit" title="'Unit'"></hot-column>
</hot-table>
</div>

Javascript

document.getElementById('handsontableId').addHook(...)
// Also tried:
var hotInstance = $("#hoTableContainer").handsontable('getInstance');

最佳答案

您正在寻找的事件是:

您所要做的就是在 Controller 中定义一个设置对象:

$scope.myAfterChangeHandler = function () {
// your code
};

$scope.mySettings = {
afterChange: $scope.myAfterChangeHandler
};

然后在 HTML 中引用该设置对象

<hot-table id="handsontableId" datarows="myData" settings="mySettings">

关于javascript - 如何获取 AngularJS ngHandsontable 的句柄,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32625263/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com