Page 1 of 1

change position NEXT button on table view

Posted: 2022-06-27 11:31
by ushay
Hello,

how can i please change the position of the NEXT/PREVIOUS button to the top of the page, or maybe make it fixed on the bottom bar.
i'm displaying 100 records on the table view and it is a pain to roll al the way down.
i have just upgraded to version 22.14 and still can't find a way to change it.

thank you,

Shay.

Re: change position NEXT button on table view

Posted: 2022-07-02 11:28
by a.gneady
Try adding the following code in the hooks/tablename-tv.js file (where tablename is the name of the concerned table -- create that file if it's not already there):

Code: Select all

$j(() => {
   $j('.pagination-section').insertBefore('.table-responsive')
})

Re: change position NEXT button on table view

Posted: 2022-07-02 18:20
by ushay
Dear Ahmed,

thank you very much, it works great.

if i could keep the button fixed on the top while scrolling then it will be perfect.

thanks,

Shay.