Set specific Column width does not work in IE 9

Set specific Column width does not work in IE 9

visionxvisionx Posts: 22Questions: 4Answers: 5
edited May 2015 in Free community support

When setting specific column width, it is not working in IE9 but in all other browsers such as IE10+, FireFox, Chrome etc. it gets displayed correctly. PFB table definition.

table= $('#example').dataTable({
    "sDom": 'Crti',
    "aaSorting":[[21,'asc']],
    "columnDefs": [{ "width": "20%", "targets": 6 }],
    "colVis": {
        "exclude": [0,1,2,3,5,6,11,12,20,21],
        "sAlign": "right"
},
"paging" : false
}).rowGrouping({
    iGroupingColumnIndex: 1,
    sGroupingColumnSortDirection: "asc",
    bExpandableGrouping: true,
    iGroupingOrderByColumnIndex: 0
});

As per the table definition column 6 should get the 20% of width in the table but it is not working in IE9 except it takes auto calculated width.

Appreciate your quick response !!!

Answers

  • jamesjacjamesjac Posts: 3Questions: 1Answers: 0

    Did you manage to solve this? I have the same issue.

This discussion has been closed.