gpt4 book ai didi

button - 如何在handsontable中的单元格内添加自定义按钮?

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

我试图在handsontable的每一行的末尾添加一个自定义保存按钮。
我在laravel 4中使用handontable软件包。

该按钮显示如下:

<button>Save</button>

最佳答案

尝试使用htmlRenderer
演示:http://docs.handsontable.com/0.19.0/demo-custom-renderers.html

var actionRenderer = function (instance, td, row, col, prop, value, cellProperties) {
var $button = $('<button>');
$button.html(value)
$(td).empty().append($button); //empty is needed because you are rendering to an existing cell
};

var $container = $("#example1");
$container.handsontable({
/*....*/
columns: [
/*....*/
{data: "action", renderer: actionRenderer}
]
});

为了获得更好的性能,可以使用纯JavaScript编写渲染器

关于button - 如何在handsontable中的单元格内添加自定义按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24774811/

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