How can i scroll automatically down to a row in datatable

How can i scroll automatically down to a row in datatable

Aryan1703Aryan1703 Posts: 73Questions: 19Answers: 1

What i want to do is if it finds a row with corresponding it should scroll to that viewport of datatble. Currenlt the row is highlighted but its not scrolled to that place. Also, is there a way to search the value from all the data rather than just the current page data. Thanks in advance!!


function getQueryParameter(name) { var urlParams = new URLSearchParams(window.location.search); return urlParams.get(name); } var logId = getQueryParameter('id'); setTimeout(function () { if (logId) { $('#assyntCx_Table tbody tr').each(function () { var rowId = $(this).find('td:first').text().trim(); if (rowId === logId) { $(this).find('td').css({ 'background-color': 'blue', 'color': '#000' }); table.scroller.toPosition(this); } }); } }, 2000);

Answers

Sign In or Register to comment.