mirror of
https://github.com/DataTables/DataTables.git
synced 2026-04-25 03:00:08 -04: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:
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user