mirror of
https://github.com/DataTables/DataTables.git
synced 2024-11-29 11:24:10 +01:00
Fix: IE7 doesn't like setAttribute('rowspan') (and colspan) so we need to do it the old fashioned way... - 6012
This commit is contained in:
parent
0843c71f7d
commit
93afeb100f
4
media/js/jquery.dataTables.js
vendored
4
media/js/jquery.dataTables.js
vendored
@ -3176,8 +3176,8 @@
|
||||
}
|
||||
|
||||
/* Do the actual expansion in the DOM */
|
||||
aoLocal[i][j].cell.setAttribute('rowspan', iRowspan);
|
||||
aoLocal[i][j].cell.setAttribute('colspan', iColspan);
|
||||
aoLocal[i][j].cell.rowSpan = iRowspan;
|
||||
aoLocal[i][j].cell.colSpan = iColspan;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user