volosoft / jtable

A JQuery plugin to create AJAX based CRUD tables.
http://www.jtable.org
1.1k stars 505 forks source link

[FEATURE] pageList: none #1057

Open silvioprog opened 10 years ago

silvioprog commented 10 years ago

Hello,

Would be interesting if you add a "none" option, e.g.:

minimal: Show only first, previous, next and last links.
normal: Shows page numbers in addition to 'minimal'.
none: Hides page numbers
patel33hardik commented 5 years ago

Hi @silvioprog you can hide using CSS for now.

JQuery recordsLoaded: function(event, data) { $("#table-name .jtable-page-list").css( 'display', 'none' ); }, or CSS

table-name .jtable-page-list {

display: none; }