simov / express-admin

MySQL, MariaDB, PostgreSQL, SQLite admin for Node.js
MIT License
1.17k stars 223 forks source link

Disable pagination #21

Closed ajax13 closed 10 years ago

ajax13 commented 10 years ago

Hi all,

Can i disable pagination in list view and show all data in the same page? and how i can do it.

simov commented 10 years ago

Just set your table's page property to a high enough number:

...
"listview":{
    ...
   "page": 100000
}
ajax13 commented 10 years ago

thx Simov, I already used this solution but it's temporary :/

simov commented 10 years ago

So what you're saying is that you're going to show more than 100000 records on one page?

simov commented 10 years ago

Listview filter will be implemented in the foreseen future, so that will resolve some of your issues.

ajax13 commented 10 years ago

Nice thank you :)