Order on in IE8
Order on in IE8
I have a grails web application that I am using with the datatables plugin and fixed columns. Everything is working fine on firefox and IE10 however in IE8 I get a security content warning when I have the datatable set allow for column ordering. Unfortunately I cannot change the security settings of the users so I am hoping to find away around the issue. Has anyone else encountered this problem? Here is the syntax I am
<g:javascript src="jquery.dataTables.min.js" />
<g:javascript src="dataTables.fixedColumns.min.js" />
<g:javascript>
$(document).ready(function() {
var table = $('#results').DataTable( {
columnDefs: [{
data: null,
defaultContent:""}],
scrollY: "400px",
scrollX: true,
scrollCollapse: true,
paging: false,
searching: false
} );
new $.fn.dataTable.FixedColumns( table, {
leftColumns: 1,
rightColumns: 1
} );
});
</g:javascript>
This is the first time I have worked with datatables so any help would be appreciated. Thanks!