Skip to content

cannot read property 'nodeValue' of null #4

@wbgillis

Description

@wbgillis

I had to modify the following in getAccessor to prevent above exception when table cell is empty:

getAccessor: funciton(a) {
...
default:
return function(a) {
if (! b.getCell(a).firstChild) {
return('');
}
return b.getCell(a).firstChild.nodeValue; // <= whhen firstChild = null, above exception thrown
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions