I am using jQuery DataTables to display a paginated table. I now want to jump to the page that contains a certain row (with the current filter/sort settings). If I know the index of the row I can easily do this with something like tbl.fnPageChange( Math.floor(rowi / tbl.fnSettings()._iDisplayLength) );.
However, I only know the index of the data object in the data array (as returned by tbl.fnGetData()).
Is there a simple way to get the row index based on this data index? So pretty much the opposite of fnGetPosition()?