Hi. I'm using DataTable plugin for my asp.net core 3.1 project. My DataTable has checkboxes and I want to know how I can find the checked rows IDs. Any help will be appreciate. Right now by $("input[type=checkbox]:checked", oTable.fnGetNodes()).each(function () {...} I could find the checked data but my data in oTable doesn't contain id in the table
↧