Add Checkbox Box Rows In Tabulator

[Solved] Add Checkbox Box Rows In Tabulator | Abap - Code Explorer | yomemimo.com
Question : add checkbox box rows in tabulator

Answered by : modern-mandrill-gkpwt1a9iinn

var table = new Tabulator("#example-table", { height:"311px", columns:[ {formatter:"rowSelection", titleFormatter:"rowSelection", hozAlign:"center", headerSort:false, cellClick:function(e, cell){ cell.getRow().toggleSelect(); }}, {title:"Name", field:"name", width:200}, {title:"Progress", field:"progress", width:100, hozAlign:"right", sorter:"number"}, {title:"Gender", field:"gender", width:100}, {title:"Rating", field:"rating", hozAlign:"center", width:80}, {title:"Favourite Color", field:"col"}, {title:"Date Of Birth", field:"dob", hozAlign:"center", sorter:"date"}, {title:"Driver", field:"car", hozAlign:"center", width:100}, ],
});

Source : https://stackoverflow.com/questions/60278148/checkbox-not-showing-on-the-tabulator-table-to-select-row-multiple-rows | Last Update : Thu, 29 Apr 21

Answers related to add checkbox box rows in tabulator

Code Explorer Popular Question For Abap