Uncaught DOMException with ColReorder and footer row with colspan
Uncaught DOMException with ColReorder and footer row with colspan
dplind
Posts: 1Questions: 0Answers: 0
DOMException: Uncaught NotFoundError: An attempt was made to reference a Node in a context where it does not exist.
Example: http://jsfiddle.net/s6VLY/1/
Drag and drop columns around to produce the error. It doesn't always happen, but it seems to happen most often with Column 5.
As a result of the error, the header is reordered but the table data remains.
I have temporarily worked around this issue by modifying fnDomSwitch in ColReorder.js:
[code]
function fnDomSwitch( nParent, iFrom, iTo )
{
var anTags = [];
for ( var i=0, iLen=nParent.childNodes.length ; i
Example: http://jsfiddle.net/s6VLY/1/
Drag and drop columns around to produce the error. It doesn't always happen, but it seems to happen most often with Column 5.
As a result of the error, the header is reordered but the table data remains.
I have temporarily worked around this issue by modifying fnDomSwitch in ColReorder.js:
[code]
function fnDomSwitch( nParent, iFrom, iTo )
{
var anTags = [];
for ( var i=0, iLen=nParent.childNodes.length ; i
This discussion has been closed.
Replies
Allan