Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to show images instead of the "next" "last" text that is displayed now. I tried to just override the text currently being displayed and it didn't seem to change anything. The "next" "last" text is still displayed, let alone I still have no idea how to change it to images.

$('#myTable').dataTable({
 "aaSorting": [[ 1, "asc" ]],
 "sPaginationType": "full_numbers",
    "oPaginate": 
    {
        "sNext": 'n',
        "sLast": 'l',
        "sFirst": 'f',
        "sPrevious": 'p'
    }
});

Anyone know how to do this? I would think it would be on the lines of:

    "oPaginate": 
    {
        "sNext": '<img src="myimage.jpg" />',
...
    }
share|improve this question
Did you try the solution you suggested (using the img tag as sNext)? – parent5446 Dec 23 '10 at 23:08
i did and nothing changed. I'm guessing I have a syntax error although I'm not getting errors. – rball Dec 24 '10 at 0:36

2 Answers

up vote 0 down vote accepted

One year late, but this looks like it's still an unanswered question.

To be able to change the default values of next/last buttons you need to pass the oPaginate object as part of the oLanguage object, like so:

$('#myTable').dataTable({
 "aaSorting": [[ 1, "asc" ]],
 "sPaginationType": "full_numbers",
 "oLanguage": {
    "oPaginate": {
        "sNext": 'n',
        "sLast": 'l',
        "sFirst": 'f',
        "sPrevious": 'p'
     }
  }
});

Source

share|improve this answer

You can change them using CSS..

Take a look at my example:

http://www(@)fisheragservice(@)com/tm/users(@)html

The page contains email addresses and don't want the spam bots to index them, so please replace the (@)'s with .'s

You can view the source to see how it was done.. Hope this helps..

share|improve this answer
Thanks! I was thinking that this would work as well, but was thinking it would be easier to just change the text that was being put out. – rball Jan 10 '11 at 17:14
1  
did you remove the page? it is now blank. – rball Jan 19 '11 at 17:07
Shoot I guess I should have copied some of the source to the answer because I remember looking but now need to implement the answer now that it is blank. – rball Jan 26 '11 at 19:02
css-tricks.com/css-image-replacement using technique 3 seems to work. – rball Jan 26 '11 at 19:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.