How to get a page from DataTable?

How to get a page from DataTable?

eminiemini Posts: 2Questions: 1Answers: 0

I'm a user. The page with DataTable I used to work with

https://cmegroup.com/trading/equity-index/us-index/e-mini-nasdaq-100_quotes_timeSales_globex_futures.html#pageNumber=1

by 7 pages subsequently to the last page

The data I need are not on every page of that DataTable.
How can I get straight to, let's say, page 128 without wasting time (and slowing down browsers)
unnecessary clicks on - 7, Next, 14, Next, 21, Next, ... , 126, Next, and at long last 128?
Or the other way back - 225, Prev, 218, Prev, 211, Prev, ... , 134, Prev, 128?
Using Firefox, Opera and Chrome? Greasemonkey? Extensions?
Thanks in advance.
Leo.

Answers

  • colincolin Posts: 15,240Questions: 1Answers: 2,599

    Hi @emini ,

    The standard paging control, pagingType won't give you that flexibility. But you could do something like this here, where you offer an input element that allows the user to jump straight to a page. It will need some tidying up, but hopefully that'll get you started.

    Cheers,

    Colin

  • eminiemini Posts: 2Questions: 1Answers: 0

    Thank you very much, Colin!

This discussion has been closed.