本帖最后由 主音吉他手 于 2023-11-15 22:21 编辑
spread.bind(GC.Spread.Sheets.Events.RowChanging, function (e, args) {
console.log(e, args, args.row);
if (that.welding == 1) {
for (let i = 0; i < that.lockedRowsList.length; i++) {
if (that.lockedRowsList[i] === args.row) {
that.$message.warning({
message: "内置台账,标题行禁止操作",
duration: 1500,
});
args.cancel = true;
return;
}
}
}
这个方法,为啥初始化就会监听呢?还没做任何操作。
这个方法不是要触发才监听吗?
|
|