@ajayabburi508 Can you please replace the below code in JS? Old: var a = $('<div>').attr({"id":"chk-sourcetype"+cell.value,"value":cell.value}).addClass(checkbox_css).click(function() { New: var checkbox_css = selected_values_array.includes(cell.value) ? "checkbox checked" : "checkbox";
var a = $('<div>').attr({"id":"chk-sourcetype"+cell.value,"value":cell.value}).addClass(checkbox_css).click(function() { Thanks KV If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.
... View more