gpt4 book ai didi

javascript - 如何在 JsGrid 中自定义编辑事件

转载 作者:行者123 更新时间:2023-12-02 14:13:22 28 4
gpt4 key购买 nike

我正在使用jsGrid并想知道是否可以自定义 editButtononclick 事件。基本上,做一些类似显示模式而不是内联编辑的事情。我知道我们可以像这样获得控制列的 HTML 输出:

{
type: 'control',
itemTemplate: function() {
var $result = jsGrid.fields.control.prototype.itemTemplate.apply(this, arguments); // Array of string
return $result;
}
}

但是如何控制EditButton

最佳答案

你可以试试这个:

editItem: function(item) {
var $row = this.rowByItem(item);
if ($row.length) {
console.log('$row: ' + JSON.stringify($row)); // I modify this
this._editRow($row);
}
},

在你的 jsGrid 配置中。

除了//我修改这个行之外的所有行都是默认来自jsGrid的原始源,所以不要更改它们。

关于javascript - 如何在 JsGrid 中自定义编辑事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39269223/

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