我在jQuery DataTable中实现了一个滚动条。当用户单击地图上的图标时,图标的ID(rowId)将用于滚动以更正表中的行。它适用于小型表,但对于包含数百个结果的表,它不会滚动到正确的行。有什么想法吗?
//When click on a feature will AUTOMATICALLY scroll to that record in the table
if (rowId != null) {
$('.dataTables_scrollBody').animate({
scrollTop: $('#TemplateData tbody tr').eq(rowId).offset().top
}, 800)
}
此外,值800代表什么?