我希望在行单击时选择一行,然后选中复选框。这些应该是相互独立的。
我尝试在选项中将行选择为 true,但想将“rowSelection”格式化程序设置更改为独立
const options = {
height: 270,
width: 100,
layout:"fitColumns",
tooltips:true,
rowSelected:true,
autoResize:true
};
columns= {[
{formatter:"rowSelection", titleFormatter:"rowSelection", align:"center", headerSort:false, cellClick:function(e, cell){
cell.getRow().toggleSelect();
// cell._cell.setValue(true);
console.log("CheckboxSelection......", cell)
}, width: 20},