Custom pagination
Custom pagination
I'm trying to build a pagination system like this:
[code]first previous next last [/code]
I've figured out how to customize my previous/next buttons in the css, but as soon as I apply
"sPaginationType": "full_numbers"
my custom buttons are removed. I need a way of customizing all buttons. I don't need the numbers. How can I do this? Any ideas?
[code]first previous next last [/code]
I've figured out how to customize my previous/next buttons in the css, but as soon as I apply
"sPaginationType": "full_numbers"
my custom buttons are removed. I need a way of customizing all buttons. I don't need the numbers. How can I do this? Any ideas?
This discussion has been closed.
Replies
Allan
I've tried using this:
nFirst.innerHTML = "";
nPrevious.innerHTML= "";
nNext.innerHTML= "";
nLast.innerHTML= "";
but it removes my images too.
Is there a way to disable the text but keep my button images?
You could use innerHTMl if you wanted, or not assign anything, or whatever :-)
Allan