You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unsure if the project has found any active maintainers. In the meantime, if you like me are looking for a way to make dataTable.columns accept path into deep objects (e.g. info.address.zip), here's a way:
Unsure if the project has found any active maintainers. In the meantime, if you like me are looking for a way to make dataTable.columns accept path into deep objects (e.g.
info.address.zip
), here's a way:Change
d[v]
on this line:dc.js/src/charts/data-table.js
Line 74 in 0e37f13
into:
v.split(".").reduce((o, i) => o[i], d)
The text was updated successfully, but these errors were encountered: