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
let's say i got 2 entities one with customer join set , and other one with customer being null. In this case datatable will render only one row (as i want it to render firstName, lastName, etc). How to manage this if i want both rows to be shown?
From bundle README example:
"aoColumns": [
{ "mData": "id" },
{ "mData": "description" },
{ "mData": "customer.firstName" },
{ "mData": "customer.lastName" },
{ "mData": "customer.location.address" }
]
let's say i got 2 entities one with customer join set , and other one with customer being null. In this case datatable will render only one row (as i want it to render firstName, lastName, etc). How to manage this if i want both rows to be shown?