Pagination problems in IE
Pagination problems in IE
trdunsworth
Posts: 6Questions: 0Answers: 0
I've started using this for a intranet phone directory. I found a pagination discussion on how to get this to work in IE6 which helped and I took out some of the misc. css section as well as the conditional css as I am not using it and don't need it.
However, in IE7 and IE8 the pagination isn't working at all. All I get is a straight list of everyone at one. (180 entries)
So here's my jquery declaration. What am I missing here to get this to work right in IE7 and 8 (District mandated to use 7 much to my frustration)
[code]
$(document).ready(function() {
$('#directory').dataTable({
"sPaginationType": "full_numbers",
"sDom": '<"top"lif>rt<"bottom"p><"clear">'
});
});
[/code]
It looks beautiful in FF, Safari, and Chrome.
So what am I messing up?
Thanks,
However, in IE7 and IE8 the pagination isn't working at all. All I get is a straight list of everyone at one. (180 entries)
So here's my jquery declaration. What am I missing here to get this to work right in IE7 and 8 (District mandated to use 7 much to my frustration)
[code]
$(document).ready(function() {
$('#directory').dataTable({
"sPaginationType": "full_numbers",
"sDom": '<"top"lif>rt<"bottom"p><"clear">'
});
});
[/code]
It looks beautiful in FF, Safari, and Chrome.
So what am I messing up?
Thanks,
This discussion has been closed.
Replies
Don't get what I'm messing up here.
Something so easy......
Thanks for following this up and posting the fix to the problem. I didn't know that this could cause issues with IE, so a very useful piece of information there - thanks :-)
Allan