The images for the two button pagination are provided by CSS, So for the two classes "paginate_disabled_previous" and "paginate_disabled_next" you could just remove the background image attribute. Either that or replace them with a transparent gif as you suggest.
is it also possible to hide numeric paging controls if they are not needed (in case result set is within single page)? It would be also nice to remove "first/previous" if you are positioned on first page or remove "next/last" if you are on the last page.
Yes - there are two options for that. Firstly you can have an fnDrawCallback function which will use display:none/block on the pagination element when there is only one page's worth of data to display (oSettings.fnDisplayEnd()), or you can have a custom pagination plug-in ( http://datatables.net/development/pagination ) which will contain the logic required for the show / hide.
Replies
The images for the two button pagination are provided by CSS, So for the two classes "paginate_disabled_previous" and "paginate_disabled_next" you could just remove the background image attribute. Either that or replace them with a transparent gif as you suggest.
Regards,
Allan
is it also possible to hide numeric paging controls if they are not needed (in case result set is within single page)? It would be also nice to remove "first/previous" if you are positioned on first page or remove "next/last" if you are on the last page.
Best regards,
Uros
Allan