Uncaught DOMException with ColReorder and footer row with colspan

Uncaught DOMException with ColReorder and footer row with colspan

dplinddplind Posts: 1Questions: 0Answers: 0
edited October 2013 in Bug reports
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

Replies

  • allanallan Posts: 61,665Questions: 1Answers: 10,096 Site admin
    Its because of the colspan in the table footer. ColReorder is getting a bit confused about that. The same is also true in the current nightly. I'll try to look into adding a way to deal with that, but it likely won't be for a little while with everything else that is going on atm.

    Allan
This discussion has been closed.