Hi , i am using your jquery databale pagination . The pagination works very fine . But in IE 9 , the pagination buttons (First , last ,Previous) is not displayed on initial page load. if we do any action in the page , like search , submit , then the pagination buttons (First , last ,Previous) gets displayed.
Code i am using in my XHTML page :
$(document).ready(function() {
$('#Tb').dataTable({
"pagingType" : "full_numbers",
"sDom" : 'ltipr',
"aLengthMenu" : [ 10 ],
'bLengthChange' : false,
"bSort": false,
"language": {
"info": "Showing page PAGE of PAGES"
}
});
});
I have included the datatable css and datatable js in my page.