gpt4 book ai didi

vue.js - 如何防止在 ag-grid 中使用自定义 vue 组件验证错误时关闭单元格编辑模式

转载 作者:行者123 更新时间:2023-12-03 06:44:13 24 4
gpt4 key购买 nike

我已经成功地将我自己的组件呈现为 cellEditor,并且在休假时我希望它尝试验证值并在失败时阻止关闭。

如果我看this然后 https://www.ag-grid.com/javascript-grid-cell-editing/#editing-api有用于编辑的可取消回调函数。但是在这个回调函数中有没有办法访问当前实例化的组件?我认为这是处理此问题的最简单方法。

我正在使用 vee-validate,所以验证函数是异步的,请记住。

最佳答案

使用整行编辑。创建一个全局变量,如

var problemRow = -1;

然后订阅这个事件:

 onRowEditingStarted: function (event) {
if (problemRow!=-1 && event.rowIndex!=problemRow) {
gridOptions.api.stopEditing();
gridOptions.api.startEditingCell({
rowIndex: problemRow,
colKey: 'the column you want to focus',
});
}
},
onRowEditingStopped: function (event) {
if (problemRow==-1) {
if (event.data.firstName != "your validation") {
problemRow = event.rowIndex
gridOptions.api.startEditingCell({
rowIndex: problemRow,
colKey: 'the column you want to focus',
});
}
}
if (problemRow == event.rowIndex) {
if (event.data.firstName != "your validation") {
problemRow = event.rowIndex
gridOptions.api.startEditingCell({
rowIndex: problemRow,
colKey: 'the column you want to focus',
});
}
else{
problemRow=-1;
}

}
},

关于vue.js - 如何防止在 ag-grid 中使用自定义 vue 组件验证错误时关闭单元格编辑模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56044396/

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