$(() => { var populationsDataTable = buildDataTable( "#tbl-select-population", JSON.parse( $("#tbl-select-population").attr("data-populations-list")), [ { data: (apopulation) => { return ``; } }, { searchable: true, data: (apopulation) => { return `${apopulation.FullName} (${apopulation.InbredSetName})`; } } ], { select: "single", paging: true, scrollY: 700, deferRender: true, scroller: true, scrollCollapse: true, layout: { topStart: "info", topEnd: "search", bottomStart: "pageLength", bottomEnd: false } }); });