I am currently using DataTables as a component of my page. However I would really like to be able to query and highlight a particular row. At the moment I am using scrollTo() from the Scroller add-on. However this requires me to turn pagination off, and also isn't particularly accurate when the row heights differ.
In the usual use case I will have a dozen columns and a few 10,000s of rows, so any solution needs to be pretty efficient. I'm not fully happy with DataTables so I'm open other table implementations. I do need the
- Sorting by column
- Searching with simultaneous filtering
- Pagination
- Programatically locating and jumping to a highlighted row
parts of DataTable though, but also not to bloat the table with excess features like in Handsontable. I'd be grateful for any suggestions for table libraries that you think might meet my requirements, I just don't have the time to play around with the fifty or so libraries out there at the moment.
EDIT: Added links to what I'm using.