Open
Description
There is an issue when doing a preloading selection of rows via modal (using Magnific Popup). The below codes will work at first.
createdCell: function (td, cellData, rowData, row, col) {
if (rowData.selected) {
this.$dt.cell(td).checkboxes.select(rowData.selected);
}
}
And when you close the modal this will no longer work. It will not execute the updateCheckbox
as what it did the first time a modal is open.