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:
Has anybody seen this?
Thanks,
Alexander
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