I have a table with lots of columns and some rows may have undefined values so I want to show a default text instead of an empty cell depending on the column. How can I set that value?
I would expect something like this:
columnDefs: [
{name: 'Code', field: 'code', default: 'My default value for code column'},
{name: 'Name', field: 'name', default: 'My default value for name column'}
];
Thanks