Quantcast
Channel: Recent Discussions — DataTables forums
Viewing all articles
Browse latest Browse all 82117

Server side paging problem in IE

$
0
0
Hi!

when using IE9 in compatibility mode, I see for example somthing like "Showing pages 1 to 15" on initial load. When clicking to the next page it displays something like "Showing pages 015 to ...". Datatables is used in server side mode here. So it seems to prepend "0" and/or does other funny things.

I found a workaround:

 "fnPreDrawCallback" : function(oSettings) {
	 var self = this;
	 /*
	  * IE 7 pagination hack for datatables
	  */
	 if ($.browser.msie  && parseInt($.browser.version, 10) <= 7) {
		 var oSettings = this.fnSettings();
		 var newIDisplayStart = oSettings._iDisplayStart;
		 oSettings._iDisplayStart = parseInt(oSettings._iDisplayStart, 10);
	 }
 }

Has anybody seen this?

Thanks,
Alexander

Viewing all articles
Browse latest Browse all 82117

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>