Datatable - Cannot read property 'tagName' of null - when editable true #3478
Labels
Type: Bug
Issue contains a bug related to a specific component. Something about the component is not working
Milestone
There's an error in Datatable, when editable=true and you mark more than one column with the mouse.
Cannot read property 'tagName' of null
DataTable.prototype.findCell = function (element) { var cell = element; while (cell.tagName != 'TD') { cell = cell.parentElement; } return cell; };
Error is also in the examples present: https://www.primefaces.org/primeng/#/datatable/editable
The text was updated successfully, but these errors were encountered: