1
0
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:
Allan Jardine 2011-08-03 20:01:08 +01:00
parent 0843c71f7d
commit 93afeb100f

View File

@ -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;
}
}
}