Skip to content
Snippets Groups Projects
Commit e8ff982e authored by Mike Feranda's avatar Mike Feranda
Browse files

Merge branch '3400637-error-on-getparentitems' into '8.x-1.x'

Update aggrid.widget.js

See merge request !9
parents 9d7b895c ffca5ccb
No related branches found
No related tags found
No related merge requests found
Pipeline #46851 skipped
...@@ -282,9 +282,11 @@ ...@@ -282,9 +282,11 @@
} }
function getHeaderParentItems(data) { function getHeaderParentItems(data) {
tempList.push(data.getDefinition('headerName').headerName); if (typeof data !== 'undefined') {
if (data.parent !== null) { tempList.push(data.getDefinition('headerName').headerName);
getHeaderParentItems(data.parent); if (data.parent !== null) {
getHeaderParentItems(data.parent);
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment