0

如何在 0.8.13 中执行此操作

var data = [
["<input type='checkbox' name='selectall' class='headchecker'>", "Pallet Barcode", "Com", "Form", "Size", "Grade", "Brand", "Fineness", "Serial", "Gross", "Net", "Fine Oz", "Original Weight","selectall"]];

$("#silverBarList").handsontable("loadData", data,true);

在以前的版本中,它运行良好。但是在这个 0.8.13 中,复选框并没有出现,而是只显示测试。

这个怎么做..?

4

1 回答 1

0

使用列设置并将类型设置为复选框。

$("#silverBarList").handsontable({
    data : data,
    columns : [
        { type : 'checkbox' }
    ]
});

或者您可以为此使用自定义渲染器。有关它们的更多信息,请查看此示例页面:http ://handsontable.com/demo/renderers_html.html

于 2013-04-29T00:25:54.537 回答